html, body {
    height: 100%;
    width: 100%;
    margin: 0;
    font-family: 'Inter', sans-serif;
}

/* Word Carousel */
.word-carousel {
  height: 100px;
  overflow: hidden;
  position: relative;
  width: 100%;
}

@media (min-width: 768px) {
  .word-carousel {
    height: 60px;
  }
}

@media (min-width: 1024px) {
  .word-carousel {
    height: 60px;
  }
}

.word-carousel-container {
    position: relative;
    width: 100%;
    min-width: 280px;
}

.word {
  position: absolute;
  width: 100%;
  min-height: 100%;
  display: flex;
  align-items: left;
  justify-content: left;
  opacity: 0;
  transform: translateY(100%);
  transition: opacity 0.4s ease-in-out, transform 0.4s ease-in-out;
  line-height: 1.2;
  padding: 2px 0;
}

.word.active {
  opacity: 1;
  transform: translateY(0);
}

.word.exit {
  opacity: 0;
  transform: translateY(-100%);
}

/* Logo Carousel */
.logo-carousel-container {
  overflow: hidden;
  background-color: #f8fafc;
  width: 100%;
  padding: 20px 0;
}

.logo-carousel {
  display: flex;
  width: calc(200% + 80px);
  animation: scroll 30s linear infinite;
}

.logo-slide {
  display: flex;
  width: 50%;
  align-items: center;
  padding: 0 40px;
}

.logo-slide img {
  width: 150px;
  height: 150px;
  object-fit: contain;
  padding: 15px;
  background-color: white;
  border-radius: 15px;
  margin: 0 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

@keyframes scroll {
  0% {
      transform: translateX(0);
  }
  100% {
      transform: translateX(-50%);
  }
}

/* Hide on mobile */
@media (max-width: 768px) {
  .logo-carousel-container {
    display: none;
  }
}

/* Section Base Styles */
section {
    min-height: auto; /* Remove fixed min-height */
    padding: 4rem 0;  /* Add consistent padding */
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    transition: background-color 0.3s ease;
}

/* Ensure first section and its content are always on top */
section:first-of-type {
    position: relative;
    z-index: 10; /* Higher than benefits section */
}

/* Ensure buttons are always clickable */
section:first-of-type .flex.space-x-4 {
    position: relative;
    z-index: 11; /* Higher than the section */
}

/* Animation Classes */
.opacity-0 {
  opacity: 0;
}

.translate-y-10 {
  transform: translateY(2.5rem);
}

.transition-all {
  transition-property: all;
}

.duration-500 {
  transition-duration: 500ms;
}

.opacity-100 {
  opacity: 1;
}

.translate-y-0 {
  transform: translateY(0);
}

/* Parallax Section */
.parallax-section {
    position: relative;
    min-height: auto;  /* Remove fixed min-height */
    padding: 4rem 1rem; /* Add horizontal padding for mobile */
    display: flex;
    align-items: center;
    justify-content: center;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    overflow: visible; /* Change from hidden to visible */
}

s/* Special case for first section (hero) */
section:first-of-type {
    height: calc(100vh - 64px); /* Account for header height */
    max-height: 1000px;
}

section:not(.parallax-section):not(:last-child)::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 15%;
    right: 15%;
    height: 1px;
    background: linear-gradient(to right, transparent, #e2e8f0, transparent);
}

/* Benefits Section - Initial State */
#benefits-section {
    background: #dbeafe;
    color: black;
    position: relative;
    padding: 1rem;
    height: auto;
    max-height: none; /* Remove max-height constraint */
    z-index: 1; /* Lower than first section */

}

#benefits-section .grid {
    margin-top: 1rem;
}

#benefits-section h2,
#benefits-section .card h3,
#benefits-section .card p {
    color: black;
    transition: color 0.3s ease;
}


#benefits-section .text-header-primary {
    color: black;
    transition: color 0.3s ease;
}

#benefits-section .text-header-accent {
    color: #005792;
    transition: color 0.3s ease;
}

/* Dark mode styles */
#benefits-section.dark-mode .text-header-primary {
    color: white;
}

#benefits-section.dark-mode .text-header-accent {
    color: #dbeafe;
}


#benefits-section .container {
    position: relative;
    z-index: 2;
}

#benefits-section .card {
    min-height: 180px; /* Set a taller minimum height */
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 32px 0 rgba(26, 43, 76, 0.37);
    transition: transform 0.3s ease, background-color 0.3s ease;
}

#benefits-section .card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.25);
}


#why-us {
  background-color: #e6f0ff;
  color: #1e293b;
  position: relative;
  isolation: isolate;
  transform: translateZ(0);
  -webkit-transform: translateZ(0);
  will-change: transform;
}

/* Force solid colors for all elements */
#why-us * {
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  transform: translateZ(0);
  -webkit-transform: translateZ(0);
}

/* Override any inherited transparency */
#why-us h2, 
#why-us h3, 
#why-us h4, 
#why-us p, 
#why-us span,
#why-us div {
  opacity: 1 !important;
  text-shadow: none !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  filter: none !important;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

/* Specific background colors */
#why-us .bg-white,
#why-us [class*="bg-white"] {
  background-color: #ffffff !important;
}

#why-us .bg-gray-50,
#why-us [class*="bg-gray-50"] {
  background-color: #f8fafc !important;
}

/* Force white background on the table */
#why-us .comparison-rows {
  background-color: #ffffff !important;
}

/* Strong borders to create definition */
#why-us .border-l {
  border-left: 1px solid rgba(0, 0, 0, 0.1) !important;
}

#why-us .border-b {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1) !important;
}

#why-us .divide-y > * {
  border-top: 1px solid rgba(0, 0, 0, 0.1) !important;
}

/* Ensure text contrast */
#why-us .text-gray-600,
#why-us .text-gray-700 {
  color: #4b5563 !important;
}

#why-us .text-gray-800 {
  color: #1f2937 !important;
}

/* High contrast button */
#why-us .bg-blue-600 {
  background-color: #2563eb !important;
}

#why-us .text-blue-600 {
  color: #2563eb !important;
}

/* Override any parallax or scroll effects */
#why-us.parallax-section {
  background-attachment: initial !important;
}

/* Fix for Safari */
@supports (-webkit-touch-callout: none) {
  #why-us {
    background-attachment: scroll !important;
  }
}

#why-us.dark-mode {
  background: #1A2B4C !important;
  color: white !important;
}

#why-us.dark-mode h2,
#why-us.dark-mode p,
#why-us.dark-mode .text-header-primary {
  color: white !important;
}

#why-us.dark-mode .text-header-accent {
  color: #dbeafe !important;
}

#why-us.dark-mode .bg-white {
  background-color: #2a3b5c !important;
}

#why-us.dark-mode .bg-gray-50 {
  background-color: #1e2a3e !important;
}

#why-us.dark-mode .text-blue-900 {
  color: #90cdf4 !important;
}

#why-us.dark-mode .text-gray-700,
#why-us.dark-mode .text-gray-600 {
  color: #cbd5e0 !important;
}

#why-us.dark-mode .border-l,
#why-us.dark-mode .border-b,
#why-us.dark-mode .divide-y > * {
  border-color: #4a5568 !important;
}

#why-us.dark-mode .bg-blue-50 {
  background-color: #2d3748 !important;
}

/* For better mobile responsiveness */
@media (max-width: 1024px) {
  .comparison-rows .grid {
    grid-template-columns: 1fr;
  }

  #why-us .grid.grid-cols-3 {
    grid-template-columns: 1fr;
  }

  #why-us .border-l {
    border-left: none;
    border-top: 1px solid #e2e8f0;
  }

  #why-us .p-6.grid.grid-cols-2 {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}
/* Our Offering Section */
/* Our Offering Section - Initial State */
#our-offering {
    background: #dbeafe;
    color: black;
    padding: 4rem 1rem;
    height: auto;
    max-height: none; /* Remove max-height constraint */
}

.offering-title,
.offering-subtitle,
.option-title,
.option-description {
    color: black;
    transition: color 0.3s ease;
}

.offering-content-wrapper {
    position: relative;
    z-index: 1;
    background-color: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(8px);
    padding: 2rem;
    border-radius: 8px;
    max-width: 800px;
    width: 100%;
    margin: 0 auto;
    transition: all 0.3s ease;
}

.parallax-section h2, 
.parallax-section p, 
.parallax-section ul {
    color: black;
}

/* Image Styles */
.image-container {
  position: relative;
  width: 100%;
  height: 100%;
  perspective: 1000px;
}

main[role="main"] {
    overflow-x: hidden;
}

.image-wrapper {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  height: 130%;
  background-color: #dbeafe;
  border-radius: 1rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
  transform-style: preserve-3d;
}

.image-wrapper img {
  max-width: 90%;
  max-height: 90%;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.image-wrapper:hover {
  transform: rotateY(-15deg);
}

.image-wrapper:hover img {
  transform: translate(-50%, -50%) scale(1.05);
}

/* Offering Content Styles */
.offering-title {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 1.5rem;
  text-align: center;
  color: black;
}

.offering-subtitle {
  font-size: 1.5rem;
  text-align: center;
  margin-bottom: 2rem;
  color: black;
}

.offering-options {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  max-width: 800px;
  margin: 0 auto;
}

.option {
  display: flex;
  opacity: 0;
  transform: translateX(-100%);
  transition: all 0.5s ease;
  padding: 1rem;
  border-radius: 15px;
  position: relative;
  overflow: hidden;
  background-color: rgba(255, 255, 255, 0.2);
}

.option.visible {
  opacity: 1;
  transform: translateX(0);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.option-title {
  flex: 1;
  font-weight: bold;
  padding-right: 1rem;
  text-align: right;
  color: black;
}

.option-description {
  flex: 2;
  opacity: 0;
  transform: translateX(100%);
  transition: all 0.5s ease 0.3s;
  color: black;
}

.option-description.visible {
  opacity: 1;
  transform: translateX(0);
}

/* Side Images */
.side-image {
  position: absolute;
  top: 50%;
  transform: translateY(-50%) scale(0.8);
  opacity: 0;
  transition: all 0.5s ease;
  border-radius: 15px;
  max-width: 300px;
  max-height: 800px;
  z-index: 0;
}

.side-image.left {
  left: -220px;
}

.side-image.right {
  right: -220px;
}

.side-image.visible {
  opacity: 1;
  transform: translateY(-50%) scale(1);
}

.side-image.left.visible {
  left: 20px;
}

.side-image.right.visible {
  right: 20px;
}

.side-image:hover {
  transform: translateY(-50%) scale(1.05);
  transition: all 0.3s ease;
  box-shadow: 0px 10px 10px rgb(0, 0, 255, 0.3);
}

/* Option Animations */
#option1::before,
#option2::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #0062ff, transparent);
    transition: transform 0.3s ease;
}

#option1::before {
    bottom: 0;
    right: 0;
    transform: translateX(-100%);
}

#option2::after {
    bottom: 0;
    right: 0;
    transform: translateX(100%);
}

#option1.animate::before {
    transform: translateX(100%);
}

#option2.animate::after {
    transform: translateX(-100%);
}

.option {
    transition: all 1s ease, box-shadow 1s ease;
}

.option.animate {
  box-shadow: 0px 10px 10px rgb(0, 0, 255, 0.3);
}

/* Services Section - Initial State */


/* Services Section Base Styles */
#services {
    background: #dbeafe;
    min-height: 80vh;
    max-height: none;
    height: auto;
    padding: 4rem 0;
    transition: background-color 0.3s ease, color 0.3s ease;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Light mode text colors */
#services h2 {
    color: #1A2B4C;
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 4rem;
    transition: color 0.3s ease;
}

#services h3 {
    color: #1A2B4C;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    transition: color 0.3s ease;
}

#services p {
    color: #374151;
    font-size: 1.125rem;
    line-height: 1.6;
    transition: color 0.3s ease;
}

/* Dark mode styles */
#services.dark-mode {
    background: #1A2B4C;
}

#services.dark-mode h2,
#services.dark-mode h3 {
    color: #FFFFFF;
}

#services.dark-mode p {
    color: #e5e7eb;
}

.services-content-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    background: transparent;
}


/* Image styles */
.services-content-wrapper img {
    width: 100%;
    height: auto;
    border-radius: 0.75rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    object-fit: cover;
    display: block;
}

.services-content-wrapper img:hover {
    transform: scale(1.02);
}


/* Contact Section - Initial State */
#contact {
    background: #dbeafe;
    color: black;
    transition: background-color 0.3s ease, color 0.3s ease;
}

/* Dark state classes */
.dark-mode {
    background: #1A2B4C !important;
    color: white !important;
}

.dark-mode h2,
.dark-mode h3,
.dark-mode p,
.dark-mode .offering-title,
.dark-mode .offering-subtitle,
.dark-mode .option-title,
.dark-mode .option-description {
    color: white !important;
}



/* Container styles */
.flex.flex-col.md\:flex-row,
.flex.flex-col-reverse.md\:flex-row {
    margin-bottom: 5rem;
    background: transparent;
}

.flex.flex-col.md\:flex-row:last-child,
.flex.flex-col-reverse.md\:flex-row:last-child {
    margin-bottom: 0;
}


/* Remove any blur effects */
.services-content-wrapper > div {
    background: transparent;
}


@media (max-width: 768px) {
    section {
        padding: 3rem 1rem;
    }

    .parallax-section {
        padding: 3rem 1rem;
    }

    /* Adjust card spacing in benefits section */
    #benefits-section .grid {
        gap: 2rem;
        padding: 0 1rem;
    }

    /* Adjust offering content spacing */
    .offering-content-wrapper {
        padding: 1.5rem;
        margin: 1rem;
        width: calc(100% - 2rem);
        max-width: none;
    }

    .offering-options {
        gap: 1rem;
    }

    .option {
        padding: 1rem;
        margin-bottom: 1rem;
    }

    /* Fix container overflow issues */
    .container {
        width: 100%;
        padding-left: 1rem;
        padding-right: 1rem;
        overflow: hidden;
    }

    .services-content-wrapper div[class*="flex-"] {
        gap: 2rem;
        margin-bottom: 3rem;
    }

    .services-content-wrapper h3 {
        text-align: center;
    }

    .services-content-wrapper p {
        text-align: center;
        margin-bottom: 2rem;
    }
    .scroll-indicator {
        animation: fadeInOut 2s ease-in-out infinite;
      }

      @keyframes fadeInOut {
        0%, 100% { opacity: 0.7; }
        50% { opacity: 1; }
      }

      /* Scroll progress bar */
      .scroll-progress {
        position: fixed;
        bottom: 0;
        left: 0;
        height: 3px;
        background-color: #3b82f6;
        width: 0%;
        transition: width 0.1s ease;
        z-index: 50;
      }

      /* Sticky feature cell */
      .sticky-feature-cell {
        position: sticky !important;
        left: 0;
        z-index: 5;
        box-shadow: 2px 0 4px rgba(0,0,0,0.1);
      }

      /* WFM column highlight */
      .wfm-highlighted {
        position: relative;
      }

      .wfm-highlighted::after {
        content: "Best choice";
        position: absolute;
        top: 0;
        right: 0;
        background-color: #3b82f6;
        color: white;
        font-size: 0.6rem;
        font-weight: bold;
        padding: 0.1rem 0.3rem;
        border-radius: 0 0 0 0.25rem;
        transform: translateY(-100%);
      }
    /* Complete CSS for "Why Us" section with 4 columns */

    #why-us .container {
        padding-left: 0;
        padding-right: 0;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        max-width: 100vw;
      }

      /* Force consistent width for the entire table */
      #why-us .bg-white.rounded-lg {
        min-width: 700px !important;
        width: 700px !important;
        max-width: none !important;
      }

      /* Ensure ALL grid elements use 4 columns */
      #why-us .grid.grid-cols-4,
      #why-us .grid.grid-cols-3,
      #why-us .comparison-rows .grid {
        display: grid !important;
        grid-template-columns: 30% 23% 23% 24% !important;
        min-width: 700px !important;
        width: 700px !important;
        max-width: none !important;
      }

      /* Fix the comparison rows specifically */
      #why-us .comparison-rows > div {
        display: grid !important;
        grid-template-columns: 30% 23% 23% 24% !important;
      }

      /* Remove any nested grids that might interfere */
      #why-us .grid.grid-cols-2 {
        display: block !important;
      }

      /* Reduce padding to fit more content */
      #why-us .p-6 {
        padding: 0.75rem !important;
      }

      /* Ensure borders appear correctly */
      #why-us .border-l {
        border-left: 1px solid rgba(0, 0, 0, 0.1) !important;
      }

      /* Make text smaller on mobile */
      #why-us h3 {
        font-size: 0.9rem !important;
        margin-bottom: 0.5rem !important;
      }

      #why-us p, 
      #why-us span {
        font-size: 0.75rem !important;
        line-height: 1.2 !important;
      }

      /* Reduce size of company logos */
      #why-us .w-16.h-16 {
        width: 2.5rem !important;
        height: 2.5rem !important;
        margin-bottom: 0.5rem !important;
      }

      /* Fix heading sizes */
      #why-us .text-xl.font-bold,
      #why-us .text-2xl.font-bold {
        font-size: 0.875rem !important;
        margin-bottom: 0.25rem !important;
      }

      /* Make the button smaller */
      #why-us button {
        padding: 0.375rem 1rem !important;
        font-size: 0.75rem !important;
      }

      /* Add scroll hint */
      #why-us::before {
        content: "← Scroll →";
        display: block;
        text-align: center;
        color: #6b7280;
        font-size: 0.75rem;
        padding: 0.25rem;
      }

      /* Style the scrollbar */
      #why-us .container::-webkit-scrollbar {
        height: 3px;
      }

      #why-us .container::-webkit-scrollbar-track {
        background: #f1f1f1;
      }

      #why-us .container::-webkit-scrollbar-thumb {
        background: #3b82f6;
        border-radius: 3px;
      }

      /* Make first column sticky */
      #why-us .grid > div:first-child {
        position: sticky !important;
        left: 0 !important;
        background-color: #f8fafc !important;
        z-index: 5 !important;
        box-shadow: 1px 0 3px rgba(0,0,0,0.1) !important;
      }

      /* Force consistent alignment */
      #why-us .flex.items-center.justify-center {
        text-align: center !important;
      }

      /* Fix content overflow */
      #why-us .grid > div {
        overflow-wrap: break-word !important;
        word-wrap: break-word !important;
        hyphens: auto !important;
      }

      /* Dark mode compatibility */
      #why-us.dark-mode .grid > div:first-child {
        background-color: #1e293b !important;
      }
    }


.service-item {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 0.5rem;
    padding: 1.5rem;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.service-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.icon-container {
    background-color: #4a5568;
    border-radius: 9999px;
    width: 3rem;
    height: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.icon-container svg {
    color: #63b3ed;
}

.service-item h3 {
    color: white;
    margin-bottom: 0.5rem;
}

.service-item p {
    color: #a0aec0;
    flex-grow: 1;
}

.video-container {
    position: relative;
    width: 100%;
}

.video-controls {
    position: absolute;
    bottom: 20px;
    right: 20px;
    display: flex;
    gap: 10px;
    z-index: 10;
}

.video-control-btn {
    background-color: rgba(0, 0, 0, 0.6);
    border: none;
    border-radius: 50%;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
}

.video-control-btn:hover {
    background-color: rgba(0, 0, 0, 0.8);
    transform: scale(1.1);
}

.video-control-btn svg {
    width: 24px;
    height: 24px;
    fill: white;
}

.restart-icon {
    transform: rotate(-45deg);
}

#contact .content-wrapper {
    background-color: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(8px);
    color: black;
}

/* Mobile popup styles */
#mobilePopup {
    display: none;
    position: fixed;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 50;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

#mobilePopup:not(.hidden) {
    display: flex;
}

.popup-content {
    background-color: white;
    padding: 2rem;
    border-radius: 0.5rem;
    width: 100%;
    max-width: 28rem;
    position: relative;
}

@media (max-width: 768px) {
    .popup-content {
        margin: 1rem;
        width: calc(100% - 2rem);
    }
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    main[role="main"] {
        width: 100%;
        padding: 1rem;
    }

    .flex.mb-12 {
            flex-direction: column;
            align-items: center;
            text-align: center;
        }

        .w-1/2 {
            width: 100%;
        }

        .w-1/2.pr-8 {
            padding-right: 0;
            margin-bottom: 2rem;
        }

        /* Center the word carousel */
        .word-carousel {
            width: 100%;
            margin: 0 auto;
        }

        .word {
            justify-content: center;
            text-align: center;
        }

        h1.text-5xl {
            font-size: 2.5rem;
            text-align: center;
        }

        .text-xl {
            font-size: 1.125rem;
            text-align: center;
        }

        /* Hide the image section completely on mobile */
        .image-container {
            display: none;
        }

        /* Center the buttons */
        .flex.space-x-4 {
            justify-content: center;
        }

        /* Offering section responsive styles */
        .offering-content-wrapper {
            padding: 0.5rem;
            margin: 0.5rem;
            width: calc(100% - 1rem);
        }

        .offering-title {
            font-size: 2rem;
        }

        .offering-subtitle {
            font-size: 1.25rem;
        }

        /* Hide side images on mobile */
        .side-image {
            display: none !important;
        }

        /* Adjust options layout */
        .option {
            flex-direction: column;
            text-align: center;
            margin-bottom: 1.5rem;
            width: 100%;
        }

        .option-title {
            text-align: center;
            padding-right: 0;
            margin-bottom: 0.5rem;
            font-size: 1.25rem;
        }

        .option-description {
            text-align: center;
            padding: 0.5rem;
        }

        /* Ensure options animate properly on mobile */
        .option.visible {
            transform: translateX(0);
            opacity: 1;
        }

        .option-description.visible {
            transform: translateX(0);
            opacity: 1;
        }

        /* Services section responsive */
        #services {
            height: auto;
            padding: 3rem 0;
        }

        .service-item {
            margin-bottom: 1rem;
        }

        .grid {
            grid-template-columns: 1fr;
        }

        /* Contact section responsive */
        .content-wrapper {
            margin: 1rem;
            padding: 1.5rem;
        }

        /* Footer responsive */
        footer .grid {
            gap: 2rem;
        }

        /* Navigation responsive */
        .hidden.md\:flex {
            display: none;
        }

        /* Mobile menu button */
        .mobile-menu-button {
            display: block;
        }
    }