    body {
      font-family: 'Inter', sans-serif;
      background-color: #f9fafb;
    }
    /* Animations for other sections */
    .animate-on-scroll {
      opacity: 0;
      transform: translateY(30px);
      transition: opacity 0.6s ease-out, transform 0.6s ease-out;
      will-change: opacity, transform;
    }
    .animate-on-scroll.visible {
      opacity: 1;
      transform: translateY(0);
    }
    /* Header-specific styles to ensure no animations */
    #header {
      animation: none !important;
      transition: none !important;
      opacity: 1;
      transform: none;
    }
    /* Hamburger/Close Icon Styles */
    .hamburger, .close {
      transition: opacity 0.3s ease;
    }
    .hamburger {
      opacity: 1;
    }
    .hamburger.hidden {
      opacity: 0;
      display: none;
    }
    .close {
      opacity: 0;
      display: none;
    }
    .close.active {
      opacity: 1;
      display: block;
    }
    /* Mobile Menu Animations */
    #mobile-menu.hidden {
      opacity: 0;
      transform: translateY(-10px);
      pointer-events: none;
    }
    #mobile-menu:not(.hidden) {
      opacity: 1;
      transform: translateY(0);
      pointer-events: auto;
    }
    .menu-item {
      opacity: 0;
      transform: translateY(20px);
      transition: opacity 0.3s ease, transform 0.3s ease;
    }
    #mobile-menu:not(.hidden) .menu-item {
      opacity: 1;
      transform: translateY(0);
    }
    #mobile-menu:not(.hidden) .menu-item:nth-child(1) { transition-delay: 0.1s; }
    #mobile-menu:not(.hidden) .menu-item:nth-child(2) { transition-delay: 0.2s; }
    #mobile-menu:not(.hidden) .menu-item:nth-child(3) { transition-delay: 0.3s; }
    #mobile-menu:not(.hidden) .menu-item:nth-child(4) { transition-delay: 0.4s; }
    #mobile-menu:not(.hidden) .menu-item:nth-child(5) { transition-delay: 0.5s; }
    /* Back to Top Button Styles */
    #back-to-top {
      position: fixed;
      bottom: 20px;
      right: 20px;
      background-color: #3b82f6;
      color: #ffffff;
      padding: 0.75rem;
      border-radius: 50%;
      box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
      opacity: 0;
      visibility: hidden;
      transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
      z-index: 1000;
    }
    #back-to-top.visible {
      opacity: 1;
      visibility: visible;
    }
    #back-to-top:hover {
      background-color: #2563eb;
      transform: translateY(-2px);
    }
    #back-to-top svg {
      width: 24px;
      height: 24px;
    }
    /* Rest of the existing styles (unchanged) */
    .hero {
      background: linear-gradient(135deg, #3b82f6 0%, #1e3a8a 100%);
      color: #ffffff;
      position: relative;
      overflow: hidden;
    }
    .hero::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: radial-gradient(circle at center, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
      z-index: 0;
    }
    .hero .container {
      position: relative;
      z-index: 1;
    }
    .hero h1 {
      font-size: clamp(1.75rem, 5vw, 2.5rem);
      font-weight: 800;
      line-height: 1.2;
      letter-spacing: -0.025em;
    }
    .hero p {
      font-size: clamp(0.875rem, 2.5vw, 1.125rem);
      font-weight: 400;
      line-height: 1.6;
      opacity: 0.9;
    }
    .hero .button-group a {
      padding: 0.75rem 1.5rem;
      font-size: clamp(0.875rem, 2vw, 1rem);
      font-weight: 600;
      border-radius: 0.5rem;
      transition: all 0.3s ease;
    }
    .hero .button-group a:first-child {
      background-color: #ffffff;
      color: #1e3a8a;
    }
    .hero .button-group a:first-child:hover {
      background-color: #f3f4f6;
      transform: translateY(-2px);
    }
    .hero .button-group a:last-child {
      background-color: transparent;
      border: 2px solid #ffffff;
      color: #ffffff;
    }
    .hero .button-group a:last-child:hover {
      background-color: rgba(255, 255, 255, 0.1);
      transform: translateY(-2px);
    }
    .circle-background {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      width: 90%;
      height: 90%;
      background: radial-gradient(circle, rgba(59, 130, 246, 0.3) 0%, transparent 60%);
      border-radius: 50%;
      z-index: -1;
    }
    .features {
      background-color: #ffffff;
      border-radius: 1rem;
      padding: 2rem;
    }
    .features h2 {
      font-weight: 700;
      font-size: clamp(1.5rem, 4vw, 2rem);
      line-height: 1.3;
    }
    .feature-item {
      background-color: #f9fafb;
      padding: 1rem;
      border-radius: 0.5rem;
      transition: transform 0.3s ease;
      display: flex;
      align-items: center;
      gap: 1rem;
    }
    .feature-item:hover {
      transform: translateY(-5px);
    }
    .feature-icon {
      flex-shrink: 0;
      width: 64px;
      height: 64px;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .feature-icon img {
      max-width: 100%;
      max-height: 100%;
      object-fit: contain;
      border-radius: 0.25rem;
    }
    .features-image img {
      width: 100%;
      max-width: clamp(250px, 50vw, 400px);
      height: auto;
      object-fit: cover;
      border-radius: 1rem;
      transition: transform 0.3s ease;
    }
    .features-image img:hover {
      transform: scale(1.05);
    }
    .features-image {
      position: relative;
      display: flex;
      justify-content: center;
      align-items: center;
      padding: 1rem;
    }
    .download {
      background-color: #f1f5f9;
      border-radius: 1rem;
      padding: 2rem;
    }
    .download h2 {
      font-size: clamp(1.5rem, 4vw, 2rem);
      font-weight: 700;
      color: #1e3a8a;
    }
    .download p {
      font-size: clamp(0.875rem, 2.5vw, 1rem);
    }
    .download .button-group a {
      padding: 0.75rem 1.5rem;
      font-size: clamp(0.875rem, 2vw, 1rem);
      font-weight: 600;
      border-radius: 0.5rem;
      transition: all 0.3s ease;
    }
    .download .button-group a:first-child {
      background-color: #3b82f6;
      color: #ffffff;
    }
    .download .button-group a:first-child:hover {
      background-color: #2563eb;
      transform: translateY(-2px);
    }
    .download .button-group a:last-child {
      background-color: #1e3a8a;
      color: #ffffff;
    }
    .download .button-group a:last-child:hover {
      background-color: #1e40af;
      transform: translateY(-2px);
    }
    .service-providers {
      background-color: #ffffff;
      border-radius: 1rem;
      padding: 2rem 1rem;
      text-align: center;
      overflow: hidden;
    }
    .service-providers h2 {
      font-weight: 700;
      font-size: clamp(1.25rem, 4vw, 1.5rem);
      line-height: 1.3;
      color: #1e3a8a;
    }
    .service-providers p {
      font-size: clamp(0.875rem, 2.5vw, 1rem);
      color: #4b5563;
      margin-bottom: 1.5rem;
    }
    .highlight {
      color: #3b82f6;
    }
    .service-providers-wrapper {
      width: 100%;
      overflow: hidden;
      position: relative;
      padding: 0.5rem 0;
      -webkit-overflow-scrolling: touch;
    }
    .service-providers-grid {
      display: flex;
      flex-direction: row;
      flex-wrap: nowrap;
      gap: 1rem;
      align-items: center;
      width: max-content;
      animation: scroll-left 20s linear infinite;
      will-change: transform;
    }
    .service-providers-grid.animate {
      animation-play-state: running;
    }
    .service-providers-grid.paused {
      animation-play-state: paused;
    }
    @keyframes scroll-left {
      0% {
        transform: translateX(0);
      }
      100% {
        transform: translateX(-50%);
      }
    }
    .provider-logo {
      flex-shrink: 0;
      width: 80px;
      height: 80px;
      display: flex;
      align-items: center;
      justify-content: center;
      background-color: #f9fafb;
      border-radius: 0.5rem;
      box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }
    .provider-logo:hover {
      transform: scale(1.1);
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    }
    .provider-logo img {
      max-width: 60px;
      max-height: 60px;
      object-fit: contain;
      transition: transform 0.3s ease-in-out;
    }
    .provider-logo:hover img {
      transform: rotate(5deg);
    }
    #footer .animate-on-scroll {
      transition-delay: 0.2s;
    }
    img {
      max-width: 100%;
      height: auto;
    }
    .service-providers-wrapper::-webkit-scrollbar {
      display: none;
    }
    .service-providers-wrapper {
      -ms-overflow-style: none;
      scrollbar-width: none;
    }
    .how-it-works {
      background-color: #f1f5f9;
      padding: 4rem 1rem;
      border-radius: 1rem;
      margin: 2rem 0;
    }
    .how-container {
      display: flex;
      flex-direction: column;
      gap: 2rem;
    }
    .how-image img {
      width: 100%;
      max-width: clamp(200px, 80vw, 400px);
      margin: 0 auto;
      border-radius: 1rem;
      object-fit: cover;
    }
    .how-content {
      flex: 1;
    }
    .section-title {
      font-size: clamp(1.5rem, 4vw, 2rem);
      font-weight: 700;
      color: #1e3a8a;
      margin-bottom: 2rem;
      text-align: center;
    }
    .step {
      display: flex;
      align-items: center;
      gap: 1rem;
      margin-bottom: 1.5rem;
      background-color: #ffffff;
      padding: 0.5rem;
      border-radius: 0.5rem;
      transition: transform 0.3s ease;
    }
    .step:hover {
      transform: translateY(-5px);
    }
    .step-icon img {
      width: 100px;
      height: 100px;
      object-fit: contain;
    }
    .step-info h3 {
      font-size: clamp(1rem, 3vw, 1.25rem);
      font-weight: 600;
      color: #1e3a8a;
      margin-bottom: 0.25rem;
    }
    .step-info p {
      font-size: clamp(0.875rem, 2.5vw, 1rem);
      color: #4b5563;
    }
    .how-download-buttons {
      display: flex;
      flex-wrap: wrap;
      gap: 1rem;
      justify-content: center;
      margin-top: 2rem;
    }
    .how-download-buttons .button {
      padding: 0.75rem 1.5rem;
      font-size: clamp(0.875rem, 2vw, 1rem);
      font-weight: 600;
      border-radius: 0.5rem;
      transition: all 0.3s ease;
    }
    .how-download-buttons .button-primary {
      background-color: #3b82f6;
      color: #ffffff;
    }
    .how-download-buttons .button-primary:hover {
      background-color: #2563eb;
      transform: translateY(-2px);
    }
    .how-download-buttons .button-secondary {
      background-color: #1e3a8a;
      color: #ffffff;
    }
    .how-download-buttons .button-secondary:hover {
      background-color: #1e40af;
      transform: translateY(-2px);
    }
    .countries {
      background-color: #ffffff;
      padding: 4rem 1rem;
      border-radius: 1rem;
      margin: 2rem 0;
      text-align: center;
    }
    .countries h2 {
      font-size: clamp(1.5rem, 4vw, 2rem);
      font-weight: 700;
      color: #1e3a8a;
      margin-bottom: 2rem;
    }
    .countries-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
      gap: 1.5rem;
      justify-items: center;
    }
    .country-card {
      display: flex;
      flex-direction: column;
      align-items: center;
      padding: 1rem;
      background-color: #f9fafb;
      border-radius: 0.5rem;
      transition: transform 0.3s ease;
    }
    .country-card:hover {
      transform: translateY(-5px);
    }
    .flag-container {
      width: 60px;
      height: 60px;
      border-radius: 50%;
      overflow: hidden;
      margin-bottom: 0.5rem;
    }
    .circular-flag {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
    .country-card p {
      font-size: clamp(0.75rem, 2vw, 1rem);
      font-weight: 500;
      color: #4b5563;
    }
    @media (min-width: 768px) {
      .hero {
        text-align: left;
      }
      .hero .button-group {
        flex-direction: row;
      }
      .features {
        padding: 3rem;
      }
      .features-content {
        grid-template-columns: repeat(2, 1fr);
      }
      .how-container {
        flex-direction: row;
        align-items: center;
      }
      .how-image,
      .how-content {
        flex: 1;
      }
      .section-title {
        text-align: left;
      }
      .how-download-buttons {
        justify-content: flex-start;
      }
    }
    @media (max-width: 1024px) {
      .hero .container {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
      }
      .features-image img {
        max-width: clamp(250px, 50vw, 350px);
      }
    }
    @media (max-width: 768px) {
      .hero {
        text-align: center;
        padding: 3rem 0;
      }
      .hero h1 {
        font-size: clamp(2rem, 5vw, 3rem);
      }
      .hero .button-group {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 1rem;
        justify-content: center;
      }
      .features {
        padding: 2rem 1rem;
      }
      .features-content {
        grid-template-columns: 1fr;
      }
      .how-it-works {
        padding: 2rem 1rem;
      }
      .how-container {
        flex-direction: column;
      }
      .how-image img {
        max-width: clamp(200px, 80vw, 300px);
      }
      .countries-grid {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
      }
      .service-providers h2 {
        font-size: clamp(1rem, 3vw, 1.25rem);
      }
      .service-providers p {
        font-size: clamp(0.75rem, 2vw, 0.875rem);
      }
      .provider-logo {
        width: 60px;
        height: 60px;
      }
      .provider-logo img {
        max-width: 45px;
        max-height: 45px;
      }
      .service-providers-grid {
        gap: 0.75rem;
        animation: scroll-left 15s linear infinite;
      }
      #back-to-top {
        bottom: 15px;
        right: 15px;
        padding: 0.5rem;
      }
      #back-to-top svg {
        width: 20px;
        height: 20px;
      }
    }
    @media (max-width: 480px) {
      .container {
        padding-left: 0.75rem;
        padding-right: 0.75rem;
      }
      .hero {
        padding: 2rem 0;
      }
      .hero h1 {
        font-size: clamp(2rem, 5vw, 2.5rem);
      }
      .hero-image-container img {
        max-width: clamp(200px, 80vw, 300px);
      }
      .hero .button-group a {
        padding: 0.5rem 1rem;
        font-size: clamp(0.75rem, 2vw, 0.875rem);
      }
      .features {
        padding: 1.5rem 0.75rem;
      }
      .features h2 {
        font-size: clamp(1.25rem, 4vw, 1.5rem);
      }
      .download {
        padding: 1.5rem 0.75rem;
      }
      .download h2 {
        font-size: clamp(1.25rem, 4vw, 1.5rem);
      }
      .how-it-works {
        padding: 1.5rem 0.75rem;
      }
      .section-title {
        font-size: clamp(1.25rem, 4vw, 1.5rem);
      }
      .step {
        flex-direction: column;
        text-align: center;
      }
      .how-download-buttons .button {
        padding: 0.5rem 1rem;
        font-size: clamp(0.75rem, 2vw, 0.875rem);
      }
      .countries {
        padding: 1.5rem 0.75rem;
      }
      .countries h2 {
        font-size: clamp(1.25rem, 4vw, 1.5rem);
      }
      .flag-container {
        width: 40px;
        height: 40px;
      }
      .country-card p {
        font-size: clamp(0.75rem, 2vw, 0.875rem);
      }
      .service-providers {
        padding: 1.5rem 0.5rem;
      }
      .service-providers-grid {
        gap: 0.5rem;
        animation: scroll-left 12s linear infinite;
      }
      .provider-logo {
        width: 50px;
        height: 50px;
      }
      .provider-logo img {
        max-width: 40px;
        max-height: 40px;
      }
      #back-to-top {
        bottom: 10px;
        right: 10px;
        padding: 0.5rem;
      }
      #back-to-top svg {
        width: 18px;
        height: 18px;
      }
    }
