
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: 'Raleway', 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
      background: #fff;
      color: #000;
      overflow-x: hidden;
    }

    /* Navigation Styling */
    .masthead {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 999;
      background: #fff;
      box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    }

    .top-bar {
      background: #f5f5f5;
      padding: 12px 20px;
      font-size: 13px;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .mini-contacts {
      display: inline-block;
      margin-right: 25px;
      color: #666;
      text-decoration: none;
      transition: color 0.3s ease;
    }

    .mini-contacts:hover {
      color: #c73d21;
    }

    .mini-contacts i {
      margin-right: 8px;
      color: #c73d21;
    }

    .header-bar {
      padding: 15px 40px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      background: #fff;
    }

    .branding a {
      text-decoration: none;
      display: flex;
      align-items: center;
    }

    .branding img {
      max-height: 70px;
      width: auto;
    }

    .main-nav {
      display: flex;
      list-style: none;
      gap: 0;
      margin: 0;
      padding: 0;
      align-items: center;
    }

    .menu-item {
      position: relative;
      margin: 0;
      padding: 0;
    }

    .menu-item > a {
      display: block;
      padding: 15px 18px;
      color: #333;
      text-decoration: none;
      font-weight: 500;
      font-size: 14px;
      transition: all 0.3s ease;
      position: relative;
    }

    .menu-item > a:hover {
      color: #c73d21;
    }

    .menu-item > a::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      height: 3px;
      background: #c73d21;
      transform: scaleX(0);
      transition: transform 0.3s ease;
    }

    .menu-item > a:hover::after {
      transform: scaleX(1);
    }

    .vutton {
      background-color: #c73d21 !important;
      border: none;
      padding: 10px 25px !important;
      text-align: center;
      cursor: pointer;
      border-radius: 4px;
      margin-left: 10px;
    }

    .vutton a {
      color: #fff !important;
      text-decoration: none !important;
      font-weight: 600;
      font-size: 13px !important;
    }

    /* Hero Section */
    .hero {
  background: url('zebra-homepage.jpg') !important;
  background-size: cover !important;
  background-position: center !important;
  background-repeat: no-repeat !important;

   display: flex;
  align-items: center;      /* vertical center */
  justify-content: center;  /* horizontal center */
  text-align: center;
 min-height: calc(100vh - 140px);
margin-top: 140px;

  position: relative;
}


    .hero::before {
      background: transparent;
      content: none;
  opacity: 01;
    }

    @keyframes gridMove {
      0% { transform: translate(0, 0); }
      100% { transform: translate(50px, 50px); }
    }

   .hero-content {
  max-width: 900px;
  padding: 0 20px;
  color: #fff;
}


    .hero h1 {
      font-size: clamp(2.5rem, 8vw, 5rem);
      font-weight: 900;
      line-height: 1.2;
      margin-bottom: 1.5rem;
      color: #fff;
      animation: fadeInUp 1s ease;
    }

    .hero .subtitle {
      font-size: clamp(1rem, 2.5vw, 1.8rem);
      margin-bottom: 2rem;
      color: #ffd9d0;
      font-weight: 300;
      animation: fadeInUp 1s ease 0.2s backwards;
    }

    .hero p {
      font-size: clamp(0.95rem, 1.8vw, 1.2rem);
      margin-bottom: 3rem;
      color: rgba(255,255,255,0.9);
      max-width: 700px;
      margin-left: auto;
      margin-right: auto;
      animation: fadeInUp 1s ease 0.4s backwards;
      line-height: 1.6;
    }

    @keyframes fadeInUp {
      from {
        opacity: 0;
        transform: translateY(30px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    .cta-button {
      display: inline-block;
      padding: 16px 45px;
      font-size: 15px;
      font-weight: 700;
      text-decoration: none;
      color: #fff;
      background: #c73d21;
      border-radius: 4px;
      transition: all 0.3s ease;
      animation: fadeInUp 1s ease 0.6s backwards;
      position: relative;
      overflow: hidden;
      border: 2px solid #c73d21;
      margin: 0 8px;
    }

    .cta-button::before {
      content: '';
      position: absolute;
      top: 0;
      left: -100%;
      width: 100%;
      height: 100%;
      background: rgba(0,0,0,0.2);
      transition: left 0.5s ease;
    }

    .cta-button:hover::before {
      left: 100%;
    }

    .cta-button:hover {
      transform: translateY(-2px);
      box-shadow: 0 10px 30px rgba(199, 61, 33, 0.4);
    }

    .cta-button.secondary {
      background: transparent;
      color: #fff;
      border-color: #fff;
    }

    .cta-button.secondary:hover {
      background: rgba(255,255,255,0.1);
    }

    /* Section Styles */
    section {
      padding: 80px 40px;
      margin: 0;
    }

    section:nth-child(even) {
      background: #f9f9f9;
    }

    .section-header {
      text-align: center;
      margin-bottom: 60px;
    }

    .section-title {
      font-size: clamp(2rem, 4vw, 3.5rem);
      font-weight: 900;
      margin-bottom: 20px;
      color: #333;
    }

    .section-subtitle {
      font-size: 1.1rem;
      color: #c73d21;
      margin-bottom: 15px;
      font-weight: 600;
    }

    .section-description {
      font-size: 1rem;
      color: #666;
      max-width: 600px;
      margin: 0 auto;
      line-height: 1.8;
    }

    /* Cards Grid */
    .cards-grid {
      max-width: 1400px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
      gap: 35px;
    }

    .card {
      background: #fff;
      border-radius: 8px;
      overflow: hidden;
      transition: all 0.3s ease;
      border: 1px solid #e0e0e0;
      box-shadow: 0 2px 10px rgba(0,0,0,0.08);
      position: relative;
    }

    .card:hover {
      transform: translateY(-8px);
      box-shadow: 0 10px 30px rgba(0,0,0,0.12);
    }

    .card-image {
      width: 100%;
      height: 250px;
      object-fit: cover;
      background: linear-gradient(135deg, #c73d21 0%, #a83220 100%);
    }

    .card-content {
      padding: 30px;
    }

    .card h3 {
      font-size: 1.5rem;
      margin-bottom: 15px;
      color: #333;
      font-weight: 700;
    }

    .card p {
      color: #666;
      line-height: 1.6;
      margin-bottom: 20px;
      font-size: 0.95rem;
    }

    .card-link {
      display: inline-block;
      padding: 12px 30px;
      background: #c73d21;
      color: #fff;
      text-decoration: none;
      border-radius: 4px;
      font-weight: 600;
      transition: all 0.3s ease;
      font-size: 13px;
    }

    .card-link:hover {
      background: #a83220;
      transform: translateX(5px);
    }

    /* Features Grid */
    .features-grid {
      max-width: 1200px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 40px;
    }

    .feature-card {
      padding: 40px 30px;
      background: #fff;
      border-radius: 8px;
      border: 1px solid #e0e0e0;
      transition: all 0.3s ease;
      text-align: center;
      box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    }

    .feature-card:hover {
      background: #fafafa;
      border-color: #c73d21;
      transform: translateY(-5px);
      box-shadow: 0 10px 30px rgba(0,0,0,0.12);
    }

    .feature-icon {
      width: 80px;
      height: 80px;
      margin: 0 auto 20px;
      background: #f2f2f2;
      border-radius: 8px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 2.5rem;
    }

    .feature-card h3 {
      font-size: 1.4rem;
      margin-bottom: 15px;
      color: #333;
      font-weight: 700;
    }

    .feature-card p {
      color: #666;
      line-height: 1.6;
      font-size: 0.95rem;
    }

    /* Testimonials */
    .testimonials-grid {
      max-width: 1200px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 30px;
    }

    .testimonial-card {
      background: #fff;
      padding: 40px;
      border-radius: 8px;
      border: 1px solid #e0e0e0;
      box-shadow: 0 2px 10px rgba(0,0,0,0.08);
      transition: all 0.3s ease;
    }

    .testimonial-card:hover {
      box-shadow: 0 10px 30px rgba(0,0,0,0.12);
    }

    .testimonial-header {
      display: flex;
      align-items: center;
      margin-bottom: 20px;
    }

    .testimonial-avatar {
      width: 60px;
      height: 60px;
      border-radius: 50%;
      background: #c73d21;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.5rem;
      color: #fff;
      margin-right: 15px;
      font-weight: bold;
    }

    .testimonial-info h4 {
      font-size: 1.1rem;
      color: #333;
      margin-bottom: 5px;
      font-weight: 700;
    }

    .stars {
      color: #ffc107;
      font-size: 13px;
    }

    .testimonial-text {
      color: #666;
      line-height: 1.6;
      font-style: italic;
      font-size: 0.95rem;
    }

    /* Fade In Animation */
    .fade-in {
      opacity: 0;
      transform: translateY(30px);
      transition: opacity 0.6s ease, transform 0.6s ease;
    }

    .fade-in.visible {
      opacity: 1;
      transform: translateY(0);
    }

    /* WhatsApp Button */
    .whatsapp-float {
      position: fixed;
      bottom: 20px;
      left: 20px;
      width: 60px;
      height: 60px;
      background: #25D366;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
      cursor: pointer;
      z-index: 998;
      transition: transform 0.3s ease;
      text-decoration: none;
    }

    .whatsapp-float:hover {
      transform: scale(1.1);
    }

    .whatsapp-float i {
      color: white;
      font-size: 30px;
    }

    /* Safari Packages Carousel */
    .safari-packages-section {
      background: linear-gradient(135deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.5) 100%), 
                  url('https://images.unsplash.com/photo-1516426122078-c23e76319801?w=1920');
      background-size: cover;
      background-position: center;
      background-attachment: fixed;
      padding: 80px 20px;
      position: relative;
    }

    /* TripAdvisor Section */
    .tripadvisor-section {
      background: #f9f9f9;
      padding: 80px 20px;
      position: relative;
    }

    .tripadvisor-rating {
      text-align: center;
      margin-bottom: 20px;
    }

    .review-card {
      min-width: calc(33.333% - 20px);
      background: #fff;
      border-radius: 12px;
      padding: 35px;
      box-shadow: 0 4px 20px rgba(0,0,0,0.08);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      border-left: 4px solid #00AA6C;
    }

    .review-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 8px 30px rgba(0,170,108,0.15);
    }

    .review-header {
      margin-bottom: 20px;
    }

    .reviewer-info {
      display: flex;
      align-items: center;
      gap: 15px;
    }

    .reviewer-avatar {
      width: 55px;
      height: 55px;
      border-radius: 50%;
      background: linear-gradient(135deg, #00AA6C 0%, #00d47e 100%);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.3rem;
      color: #fff;
      font-weight: bold;
      flex-shrink: 0;
    }

    .reviewer-info h4 {
      font-size: 1.1rem;
      color: #333;
      margin-bottom: 5px;
      font-weight: 700;
    }

    .review-date {
      font-size: 0.85rem;
      color: #999;
      margin-top: 3px;
    }

    .review-title {
      font-size: 1.3rem;
      color: #333;
      margin-bottom: 15px;
      font-weight: 700;
    }

    .review-text {
      color: #666;
      line-height: 1.7;
      font-size: 0.95rem;
      margin-bottom: 20px;
    }

    .tripadvisor-logo-small {
      display: flex;
      justify-content: flex-end;
      margin-top: 15px;
      padding-top: 15px;
      border-top: 1px solid #f0f0f0;
    }

    .carousel-container {
      max-width: 1400px;
      margin: 0 auto;
      position: relative;
    }

    .carousel-header {
      text-align: center;
      margin-bottom: 60px;
    }

    .carousel-header h2 {
      font-size: clamp(2.5rem, 5vw, 4rem);
      font-weight: 900;
      color: #fff;
      text-shadow: 2px 2px 10px rgba(0,0,0,0.5);
      margin-bottom: 10px;
    }

    .carousel-wrapper {
      position: relative;
      overflow: hidden;
      padding: 0 60px;
    }

    .carousel-track {
      display: flex;
      transition: transform 0.5s ease-in-out;
      gap: 30px;
    }

    .package-card {
      min-width: calc(33.333% - 20px);
      background: #fff;
      border-radius: 12px;
      overflow: hidden;
      box-shadow: 0 10px 40px rgba(0,0,0,0.3);
      transition: transform 0.3s ease;
    }

    .package-card:hover {
      transform: translateY(-10px);
    }

    .package-image {
      width: 100%;
      height: 300px;
      object-fit: cover;
    }

    .package-content {
      padding: 30px;
      text-align: center;
    }

    .package-content h3 {
      font-size: 1.6rem;
      color: #333;
      margin-bottom: 15px;
      font-weight: 700;
    }

    .package-content p {
      color: #666;
      line-height: 1.6;
      margin-bottom: 25px;
      font-size: 0.95rem;
    }

    .package-link {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      color: #c73d21;
      text-decoration: none;
      font-weight: 600;
      font-size: 0.95rem;
      transition: gap 0.3s ease;
    }

    .package-link:hover {
      gap: 15px;
    }

    .carousel-nav {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      background: rgba(255,255,255,0.9);
      border: none;
      width: 50px;
      height: 50px;
      border-radius: 50%;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.5rem;
      color: #c73d21;
      transition: all 0.3s ease;
      z-index: 10;
      box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    }

    .carousel-nav:hover {
      background: #c73d21;
      color: #fff;
      transform: translateY(-50%) scale(1.1);
    }

    .carousel-nav.prev {
      left: 0;
    }

    .carousel-nav.next {
      right: 0;
    }

    .carousel-indicators {
      display: flex;
      justify-content: center;
      gap: 12px;
      margin-top: 40px;
    }

    .indicator {
      width: 12px;
      height: 12px;
      border-radius: 50%;
      background: rgba(255,255,255,0.4);
      border: 2px solid rgba(255,255,255,0.6);
      cursor: pointer;
      transition: all 0.3s ease;
    }

    .indicator.active {
      background: #c73d21;
      border-color: #c73d21;
      transform: scale(1.3);
    }

    /* Responsive */
    @media (max-width: 1024px) {
      .package-card {
        min-width: calc(50% - 15px);
      }
    }

    @media (max-width: 768px) {
      .top-bar {
        flex-direction: column;
        gap: 10px;
      }

      .mini-contacts {
        margin-right: 15px;
        font-size: 12px;
      }

      .header-bar {
        padding: 15px 20px;
      }

      .main-nav {
        display: none;
      }

      .hero {
        margin-top: 120px;
        min-height: calc(100vh - 120px);
      }

      .cards-grid,
      .features-grid,
      .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 25px;
      }

      section {
        padding: 50px 20px;
      }

      .carousel-wrapper {
        padding: 0 50px;
      }

      .package-card {
        min-width: 100%;
      }

      .carousel-nav {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
      }

      .package-image {
        height: 250px;
      }
    }
    /* Navigation Styling */
.masthead {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: #fff;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.header-bar {
  padding: 15px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #fff;
}

.branding a {
  text-decoration: none;
  display: flex;
  align-items: center;
}

.branding img {
  max-height: 70px;
  width: auto;
}

nav {
  display: flex;
  align-items: center;
}

.main-nav {
  display: flex;
  list-style: none;
  gap: 0;
  margin: 0;
  padding: 0;
  align-items: center;
}

.menu-item {
  position: relative;
  margin: 0;
  padding: 0;
}

.menu-item > a {
  display: block;
  padding: 15px 18px;
  color: #333;
  text-decoration: none;
  font-weight: 500;
  font-size: 14px;
  transition: all 0.3s ease;
  position: relative;
}

.menu-item > a:hover {
  color: #40c4aa;
}

.menu-item > a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: #40c4aa;
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.menu-item > a:hover::after {
  transform: scaleX(1);
}

/* Dropdown Menu Styling */
.menu-item.has-dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  min-width: 250px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
  border-radius: 0 0 8px 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  list-style: none;
  padding: 15px 0;
  margin: 0;
  z-index: 1000;
}

.menu-item.has-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu li {
  margin: 0;
  padding: 0;
}

.dropdown-menu li a {
  display: block;
  padding: 12px 25px;
  color: #333;
  text-decoration: none;
  font-size: 14px;
  transition: all 0.3s ease;
  border-left: 3px solid transparent;
}

.dropdown-menu li a:hover {
  background: #f5f5f5;
  color: #40c4aa;
  border-left-color: #40c4aa;
  padding-left: 30px;
}

/* Multi-column Dropdown for Trekking */
.dropdown-menu.dropdown-columns {
  display: flex;
  min-width: 650px;
  padding: 20px 0;
  gap: 0;
}

.dropdown-column {
  flex: 1;
  padding: 0 20px;
  border-right: 1px solid #eee;
}

.dropdown-column:last-child {
  border-right: none;
}

.dropdown-column-title {
  font-weight: 700;
  color: #40c4aa;
  font-size: 13px;
  text-transform: uppercase;
  padding: 10px 0;
  margin-bottom: 10px;
  letter-spacing: 0.5px;
}

.dropdown-column li {
  list-style: none;
  margin: 0;
  padding: 0;
}

.dropdown-column li a {
  padding: 10px 0;
  border-left: none;
  display: block;
}

.dropdown-column li a:hover {
  padding-left: 10px;
  background: transparent;
}

/* Pay Now Button */
.menu-item.vutton {
  margin-left: 10px;
}

.menu-item.vutton a {
  background-color: #40c4aa !important;
  border: none;
  padding: 10px 25px !important;
  text-align: center;
  cursor: pointer;
  border-radius: 4px;
  transition: all 0.3s ease;
  color: #fff !important;
  font-weight: 600;
  font-size: 13px !important;
}

.menu-item.vutton a:hover {
  background-color: #36b399 !important;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(64, 196, 170, 0.3);
}

.menu-item.vutton a::after {
  display: none;
}

/* Responsive */
@media (max-width: 1200px) {
  .menu-item > a {
    padding: 15px 12px;
    font-size: 13px;
  }
  
  .dropdown-menu.dropdown-columns {
    min-width: 550px;
  }
}

@media (max-width: 992px) {
  .main-nav {
    display: none;
  }
  
  /* Add mobile menu button styling here if needed */
}

/* Fix for mobile menu visibility */
@media (max-width: 992px) {
  .main-nav {
    display: flex !important;
  }
  
  .main-nav.active {
    display: flex !important;
    left: 0;
  }
  
  .menu-item {
    display: block !important;
  }
  
  .menu-item > a {
    display: block !important;
    color: #333 !important;
  }
}
/* Mobile Menu Toggle Button */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  z-index: 1001;
}

.mobile-menu-toggle span {
  width: 25px;
  height: 3px;
  background: #333;
  margin: 3px 0;
  transition: all 0.3s ease;
  border-radius: 3px;
}

.mobile-menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

/* Mobile Navigation Styles */
@media (max-width: 992px) {
  .mobile-menu-toggle {
    display: flex;
  }
  
  .main-nav {
    position: fixed;
    top: 120px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 120px);
    background: #fff;
    flex-direction: column;
    padding: 20px;
    overflow-y: auto;
    transition: left 0.3s ease;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  }
  
  .main-nav.active {
    left: 0;
  }
  
  .menu-item {
    width: 100%;
    border-bottom: 1px solid #f0f0f0;
  }
  
  .menu-item > a {
    padding: 15px 10px;
    width: 100%;
  }
  
  .menu-item > a::after {
    display: none;
  }
  
  /* Mobile Dropdown */
  .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: #f9f9f9;
  }
  
  .menu-item.has-dropdown.active .dropdown-menu {
    max-height: 500px;
  }
  
  .dropdown-menu.dropdown-columns {
    flex-direction: column;
    min-width: 100%;
  }
  
  .dropdown-column {
    border-right: none;
    border-bottom: 1px solid #eee;
    padding: 10px;
  }
  
  .menu-item.vutton {
    margin-left: 0;
    margin-top: 10px;
  }
}
   @keyframes fadeIn {
      from {
        opacity: 0;
        transform: translateY(20px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    .fade-in {
      animation: fadeIn 0.8s ease-out forwards;
      opacity: 0;
    }

    .feature-card {
      background: #fff;
      padding: 30px;
      border-radius: 12px;
      box-shadow: 0 4px 15px rgba(0,0,0,0.08);
      text-align: center;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .feature-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    }

    .feature-icon {
      font-size: 3.5rem;
      margin-bottom: 20px;
    }

    .feature-card h3 {
      color: #c73d21;
      font-size: 1.4rem;
      font-weight: 700;
      margin-bottom: 15px;
    }

    .feature-card p {
      color: #666;
      line-height: 1.7;
    }

    .section-header {
      text-align: center;
      margin-bottom: 20px;
    }

    .section-title {
      font-size: 2.5rem;
      font-weight: 800;
      color: #1a1a1a;
      margin-bottom: 15px;
      letter-spacing: 1px;
    }

    .section-description {
      font-size: 1.15rem;
      color: #666;
      max-width: 800px;
      margin: 0 auto;
      line-height: 1.7;
    }

    @media (max-width: 768px) {
      .section-title {
        font-size: 2rem;
      }
      
      h1 {
        font-size: 2.5rem !important;
      }
    }
 