.logo-image {
  max-height: 140px !important; /* Much larger than before */
  margin-top: -20px; /* Pull the logo up significantly */
  margin-bottom: -20px; /* Pull the logo down significantly */
  position: relative;
  z-index: 1000; /* Ensure the logo stays above other elements */
}
/* Appendices Page CSS */

:root {
  --primary-color: #5a8d55;
  --secondary-color: #84b97f;
  --light-color: #e8f5e4;
  --dark-color: #3a5c38;
  --white-color: #ffffff;
  --accent-color: #32de84;
  --contrast-color: #ffffff;
  --surface-color: #f8f9fa;
  --heading-color: #4a623e;
}

/* Page Title */
.page-title {
  background-color: var(--primary-color);
  background-image: linear-gradient(135deg, var(--primary-color) 0%, var(--dark-color) 100%);
  padding: 100px 0 60px;
  color: var(--white-color);
  position: relative;
  text-align: center;
}

.page-title h1 {
  font-size: 48px;
  font-weight: 700;
  color: var(--white-color);
  margin-bottom: 10px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

/* Breadcrumbs */
.breadcrumbs {
  margin-bottom: 20px;
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 14px;
}

.breadcrumbs ol li {
  display: inline-block;
  margin-right: 10px;
  position: relative;
}

.breadcrumbs ol li a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: 0.3s;
}

.breadcrumbs ol li a:hover {
  color: var(--white-color);
}

.breadcrumbs ol li.current {
  color: var(--white-color);
  pointer-events: none;
}

.breadcrumbs ol li:not(:last-child)::after {
  content: "/";
  color: rgba(255, 255, 255, 0.5);
  margin-left: 10px;
}

/* Section Styling */
.section {
  margin-bottom: 50px;
  padding-bottom: 30px;
}

/* Deployment Manual and User Manual Styling */
.deployment-steps ol {
  counter-reset: step-counter;
  list-style: none;
  padding-left: 10px;
}

.deployment-steps ol li {
  position: relative;
  margin-bottom: 30px;
  padding-left: 50px;
  counter-increment: step-counter;
  display: block;
}

.deployment-steps ol li::before {
  content: counter(step-counter);
  position: absolute;
  left: 0;
  top: 0;
  width: 35px;
  height: 35px;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  box-shadow: 0 3px 10px rgba(71, 178, 228, 0.3);
}

.deployment-steps .image-container {
  margin: 20px 0 30px 0;
  width: 100%;
  text-align: center;
}

.deployment-steps img {
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  border: 1px solid #eaeaea;
  max-width: 80%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: block;
  margin: 0 auto;
}

.deployment-steps img:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

/* User Manual Styling */
.user-manual-content p {
  margin-bottom: 20px;
  line-height: 1.7;
}

/* Legal Issues Section Styling */
.legal-content {
  background-color: var(--surface-color);
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.legal-content h3 {
  color: var(--heading-color);
  font-size: 24px;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--accent-color);
}

.legal-content h4 {
  color: var(--heading-color);
  font-size: 20px;
  margin: 25px 0 15px 0;
}

.legal-content p {
  margin-bottom: 15px;
  line-height: 1.7;
}

.legal-content ul {
  list-style: disc;
  padding-left: 20px;
  margin-bottom: 20px;
}

.legal-content ul li {
  padding-bottom: 10px;
  display: list-item;
}

.legal-content h5 {
  font-size: 18px;
  margin: 20px 0 10px 0;
  color: var(--heading-color);
}

/* Blog Section Styling */
.dev-blog-content .blog-post {
  background-color: var(--surface-color);
  border-radius: 10px;
  padding: 25px;
  margin-bottom: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.dev-blog-content .blog-post:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.dev-blog-content .blog-post .post-title {
  font-size: 22px;
  margin-bottom: 10px;
  color: var(--heading-color);
}

.dev-blog-content .blog-post .post-meta {
  font-size: 14px;
  color: #888;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
}

.dev-blog-content .blog-post .post-meta i {
  margin-right: 5px;
  color: var(--accent-color);
}

.dev-blog-content .blog-post .post-meta .date {
  margin-right: 20px;
}

.dev-blog-content .blog-post .post-content {
  margin-bottom: 15px;
  line-height: 1.7;
}

.dev-blog-content .blog-post .read-more {
  display: inline-block;
  padding: 8px 20px;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border-radius: 5px;
  text-decoration: none;
  font-weight: 500;
  transition: background-color 0.3s ease;
}

.dev-blog-content .blog-post .read-more:hover {
  background-color: #3598c8;
}

/* Video Section Styling */
.video-container {
  position: relative;
  overflow: hidden;
  padding-top: 56.25%; /* 16:9 Aspect Ratio */
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  margin: 30px 0;
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.video-description {
  margin-top: 20px;
  padding: 20px;
  background-color: var(--surface-color);
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.video-description h4 {
  margin-bottom: 15px;
  font-size: 20px;
  color: var(--heading-color);
}

/* Sub-section styling with icons */
.sub-section-header {
  display: flex;
  align-items: center;
  margin-bottom: 25px;
}

.sub-section-header i {
  font-size: 24px;
  color: var(--accent-color);
  margin-right: 15px;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(71, 178, 228, 0.1);
  border-radius: 50%;
}

.sub-section-header h3 {
  margin: 0;
  font-size: 24px;
  font-weight: 600;
}

/* Card styling for manual sections */
.manual-card {
  background-color: var(--surface-color);
  border-radius: 10px;
  padding: 25px;
  margin-bottom: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.manual-card:hover {
  transform: translateY(-5px);
}

.manual-card h4 {
  color: var(--heading-color);
  font-size: 20px;
  margin-bottom: 15px;
  position: relative;
  padding-bottom: 10px;
}

.manual-card h4::after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 2px;
  background: var(--accent-color);
  bottom: 0;
  left: 0;
}

/* Call-to-action section */
.appendix-cta {
  background-color: rgba(71, 178, 228, 0.1);
  border-radius: 10px;
  padding: 30px;
  margin: 40px 0;
  text-align: center;
}

.appendix-cta h3 {
  font-size: 22px;
  margin-bottom: 15px;
  color: var(--heading-color);
}

.appendix-cta p {
  margin-bottom: 20px;
}

.appendix-cta .btn {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 10px 25px;
  border-radius: 50px;
  font-weight: 500;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

.appendix-cta .btn:hover {
  background-color: #3598c8;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(71, 178, 228, 0.3);
}

/* Video Carousel Specific Styling */
.video-carousel {
  position: relative;
  margin: 40px auto;
  max-width: 1000px;
}

.carousel-container {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.carousel-slides {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.carousel-slide {
  min-width: 100%;
  opacity: 0;
  transition: opacity 0.4s ease-in-out;
  position: relative;
}

.carousel-slide.active {
  opacity: 1;
}

.carousel-navigation {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}

.carousel-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: rgba(71, 178, 228, 0.3);
  margin: 0 8px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.carousel-dot.active {
  background-color: var(--accent-color);
  transform: scale(1.2);
}

.carousel-arrow {
  position: absolute;
  top: 60%;
  transform: translateY(-50%);
  width: 45px;
  height: 45px;
  background-color: rgba(71, 178, 228, 0.8);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}

.carousel-arrow:hover {
  background-color: rgba(71, 178, 228, 1);
  transform: translateY(-50%) scale(1.1);
}

.carousel-arrow i {
  font-size: 22px;
  color: white;
  transition: color 0.3s ease;
}

.carousel-arrow.prev {
  left: 15px;
}

.carousel-arrow.next {
  right: 15px;
}

.video-info {
  padding: 20px;
  background-color: var(--surface-color);
  border-radius: 0 0 10px 10px;
}

.video-title {
  margin-top: 0;
  margin-bottom: 15px;
  font-size: 22px;
  color: var(--heading-color);
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .deployment-steps ol li {
    padding-left: 45px;
  }

  .legal-content {
    padding: 20px;
  }

  .legal-content h3 {
    font-size: 22px;
  }

  .legal-content h4 {
    font-size: 18px;
  }
}

@media (max-width: 768px) {
  .deployment-steps img {
    max-width: 100%;
  }

  .manual-card {
    padding: 20px;
  }

  .deployment-steps ol li {
    padding-left: 40px;
  }

  .deployment-steps ol li::before {
    width: 30px;
    height: 30px;
  }
  
  .carousel-arrow {
    width: 40px;
    height: 40px;
  }

  .carousel-arrow.prev {
    left: -20px;
  }

  .carousel-arrow.next {
    right: -20px;
  }
}

@media (max-width: 576px) {
  .carousel-arrow {
    display: none;
  }
}