
        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        body {
            font-family: sans-serif;
            line-height: 1.6;
            background: #f9fafb;
            color: #333;
        }

        a {
            text-decoration: none;
        }

        img {
            max-width: 100%;
            display: block;
        }

        h1,
        h2,
        h3,
        h4 {
            margin-bottom: 0.5rem;
        }

        section {
            padding: 60px 20px;
        }

        .container {
            max-width: 1200px;
            margin: auto;
        }

        .btn {
            padding: 14px 28px;
            font-weight: bold;
            border-radius: 8px;
            display: inline-block;
            transition: 0.3s ease;
            cursor: pointer;
        }

        .btn-primary {
            background: white;
            color: #2563eb;
        }

        .btn-primary:hover {
            background: #f3f4f6;
        }

        .btn-outline {
            border: 2px solid white;
            color: white;
        }

        .btn-outline:hover {
            background: white;
            color: #2563eb;
        }

        .hero {
            background: linear-gradient(to bottom right, #2563eb, #7e22ce);
            color: white;
            position: relative;
        }

        .hero::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.4);
            z-index: 0;
        }

        .hero .content {
            position: relative;
            z-index: 1;
            display: grid;
            grid-template-columns: 1fr;
            gap: 30px;
            min-height: 80vh;
            align-items: center;
        }

        @media(min-width: 1024px) {
            .hero .content {
                grid-template-columns: 1fr 1fr;
            }
        }

        .features-grid {
            display: grid;
            gap: 30px;
            grid-template-columns: 1fr;
        }

        @media(min-width: 768px) {
            .features-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media(min-width: 1024px) {
            .features-grid {
                grid-template-columns: repeat(3, 1fr);
            }
        }

        .feature-box {
            background: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            transition: box-shadow 0.3s;
        }

        .feature-box:hover {
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
        }

        .feature-box .icon {
            background: #e0f2fe;
            color: #2563eb;
            font-size: 24px;
            width: 48px;
            height: 48px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 8px;
            margin-bottom: 12px;
        }

        .testimonials-grid {
            display: grid;
            gap: 30px;
            grid-template-columns: 1fr;
        }

        @media(min-width: 768px) {
            .testimonials-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        .testimonial {
            background: white;
            padding: 20px;
            border-radius: 10px;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
        }

        .cta {
            background: linear-gradient(to right, #2563eb, #7e22ce);
            color: white;
            text-align: center;
        }

        .cta-stats {
            display: grid;
            grid-template-columns: repeat(1, 1fr);
            gap: 30px;
            margin-top: 50px;
        }
        * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: Arial, sans-serif;
    }

    .header {
      background-color: #ffffff;
      box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
      padding: 1rem 0;
      position: sticky;
      top: 0;
      z-index: 1000;
    }

    .container {
      max-width: 1200px;
      margin: auto;
      padding: 0 20px;
    }

    .header-content {
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .logo {
      height: 50px;
    }

    .nav-links {
      display: flex;
      gap: 1.5rem;
    }

    .nav-links a {
      text-decoration: none;
      color: #333;
      font-weight: 500;
      font-size: 16px;
    }

    .nav-links a:hover {
      color: #007bff;
    }

    .menu-icon {
      display: none;
      font-size: 24px;
      cursor: pointer;
    }

    .mobile-menu {
      display: none;
      flex-direction: column;
      gap: 1rem;
      margin-top: 10px;
    }

    .mobile-menu a {
      text-decoration: none;
      color: #333;
      font-size: 16px;
    }

    /* Responsive styles */
    @media (max-width: 768px) {
      .nav-links {
        display: none;
      }

      .menu-icon {
        display: block;
      }

      .mobile-menu {
        display: none;
        background-color: #f9f9f9;
        padding: 1rem;
        border-radius: 4px;
      }

      .mobile-menu.show {
        display: flex;
      }

        @media(min-width: 768px) {
            .cta-stats {
                grid-template-columns: repeat(3, 1fr);
            }
        }
    }
    body {
      font-family: Arial, sans-serif;
      margin: 0;
      padding: 0;
    }

    .footer {
      background-color: #35383b;
      padding: 40px 20px 20px;
      color: #ffffff;
    }

    .footer-container {
      display: flex;
      flex-wrap: wrap;
      max-width: 1200px;
      margin: auto;
      gap: 30px;
      justify-content: space-between;
    }

    .footer-col {
      flex: 1 1 200px;
    }

    .footer h3, .footer h4 {
      color: #ffffff;
      margin-bottom: 15px;
    }

    .footer p {
      font-size: 14px;
      line-height: 1.6;
    }

    .footer ul {
      list-style: none;
      padding: 0;
    }

    .footer ul li {
      margin-bottom: 10px;
    }

    .footer ul li a {
      text-decoration: none;
      color: #c8c0c0;
      font-size: 14px;
      transition: color 0.3s ease;
    }

    .footer ul li a:hover {
      color: #d2d6db;
    }

    .social-icons a {
      display: inline-block;
      margin-right: 10px;
      font-size: 20px;
      color: #fdfdfd;
      text-decoration: none;
    }

    .footer-bottom {
      text-align: center;
      color: #ffffff;
      margin-top: 30px;
      padding-top: 15px;
      border-top: 1px solid #ccc;
      font-size: 14px;
    }

    @media (max-width: 768px) {
      .footer-container {
        flex-direction: column;
        text-align: center;
      }

      .footer-col {
        margin-bottom: 30px;
      }

      .social-icons a {
        margin: 5px;
      }
    }
/* =====================
   HEADER STYLES
   ===================== */
.header {
  background: white;
  border-bottom: 1px solid #ddd;
}

.header .container {
  max-width: 1200px;
  margin: auto;
  padding: 10px 20px;
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  height: 70px;
  margin-left: -1px;
}

.nav-links a {
  text-decoration: none;
  margin: 0 15px;
  color: #383737;
  font-weight: 600;
}

.menu-icon {
  font-size: 24px;
  cursor: pointer;
  display: none;
}

.mobile-menu {
  display: none;
  flex-direction: column;
}

.mobile-menu.show {
  display: flex;
}

/* Responsive Menu */
@media (max-width: 768px) {
  .nav-links {
    display: none;
  }
  .menu-icon {
    display: block;
  }
}

/* =====================
   FOOTER STYLES
   ===================== */
.footer {
  background: #222;
  color: white;
  padding: 40px 20px;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}

.footer h3, .footer h4 {
  margin-bottom: 10px;
}

.footer p {
  font-size: 14px;
}

.footer ul {
  list-style: none;
  padding: 0;
}

.footer ul li {
  margin-bottom: 8px;
}

.footer ul li a {
  color: white;
  text-decoration: none;
}

.footer ul li a:hover {
  text-decoration: underline;
}

.social-icons a {
  color: white;
  margin-right: 10px;
  font-size: 18px;
}

.footer-bottom {
  margin-top: 20px;
  text-align: center;
  font-size: 14px;
  border-top: 1px solid #444;
  padding-top: 10px;
}
/* Hero Section */
.hero {
    background-image: url('https://readdy.ai/api/search-image?query=Modern%20technology%20background%20with%20artificial%20intelligence%20neural%20networks%2C%20digital%20connections%2C%20and%20futuristic%20elements%20in%20blue%20and%20purple%20tones%2C%20minimalist%20design%20with%20geometric%20patterns%2C%20professional%20tech%20atmosphere%2C%20clean%20backdrop%20perfect%20for%20text%20overlay&width=1920&height=1080&seq=hero-ai-bg&orientation=landscape');
    background-size: cover;
    background-position: center;
    padding: 60px 0;
}

.hero h1 {
    font-size: 3rem;
}

.hero p {
    margin: 20px 0;
    font-size: 1.6rem;
}

.hero-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.hero-image img {
    border-radius: 10px;
    max-width: 100%;
}

/* Section Titles */
.section-title {
    text-align: center;
    color: #122c66;
    font-size: 2rem;
}

.section-subtitle {
    text-align: center;
    max-width: 700px;
    margin: 10px auto 40px;
    font-size: 1.2rem;
}

/* Feature Cards */
.features-grid {
    display: grid;
    gap: 20px;
}

.feature-card {
    background-color: white;
    border-radius: 0.5rem;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: 0.3s;
}

.feature-card img {
    width: 100%;
    height: 12rem;
    object-fit: cover;
}

.feature-content {
    padding: 1.5rem;
}

.feature-icon {
    width: 3rem;
    height: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #dbeafe;
    border-radius: 0.5rem;
    margin-bottom: 1rem;
}

.feature-icon i {
    font-size: 1.5rem;
    color: #2563eb;
}

.feature-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #111827;
    margin-bottom: 0.75rem;
}

.feature-card p {
    color: #4b5563;
}

/* Testimonials */
.testimonials-grid {
    display: grid;
    gap: 1.5rem;
}

.testimonial {
    background-color: #336eed;
    padding: 1.5rem;
    border-radius: 0.75rem;
    color: white;
}

.testimonial .rating {
    color: #facc15;
}

/* CTA Section */
.cta {
    text-align: center;
    padding: 50px 0;
}

.cta-btn {
    margin-top: 20px;
}

.cta-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 20px;
}

.stat-number {
    font-size: 2rem;
}

    body {
      margin: 0;
      font-family: 'Segoe UI', sans-serif;
      line-height: 1.6;
    }

    /* Hero Section */
    .contact-hero {
      position: relative;
      background: linear-gradient(to right, #1e40af, #2563eb);
      color: white;
      padding: 100px 20px;
      text-align: center;
      overflow: hidden;
    }
    .contact-hero::before {
      content: '';
      position: absolute;
      inset: 0;
      background-image: url('https://readdy.ai/api/search-image?query=Customer%20support%20team%20helping%20students%2C%20friendly%20professional%20consultation%2C%20modern%20office%20environment%2C%20AI%20education%20advisors%2C%20collaborative%20discussion%2C%20welcoming%20atmosphere%2C%20diverse%20team%20of%20education%20consultants&width=1200&height=600&seq=contact-hero&orientation=landscape');
      background-size: cover;
      background-position: center;
      filter: brightness(0.3);
      z-index: 0;
    }
    .contact-hero-content {
      position: relative;
      max-width: 1000px;
      margin: auto;
      z-index: 1;
    }
    .contact-hero h1 {
      font-size: 3rem;
      margin-bottom: 20px;
    }
    .contact-hero p {
      font-size: 1.25rem;
      margin-bottom: 40px;
    }
    .contact-hero .stats {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 20px;
    }
    .contact-hero .stat-box {
      background: rgba(255, 255, 255, 0.2);
      backdrop-filter: blur(8px);
      padding: 20px 30px;
      border-radius: 10px;
    }
    .stat-box div:first-child {
      font-size: 1.8rem;
      font-weight: bold;
    }
    .stat-box div:last-child {
      font-size: 0.875rem;
    }

    body {
      font-family: Arial, sans-serif;
    }

    .header {
      background-color: #ffffff;
      box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
      padding: 1rem 0;
      position: sticky;
      top: 0;
      z-index: 1000;
    }

    .container {
      max-width: 1200px;
      margin: auto;
      padding: 0 20px;
    }

  
    .logo {
      height: 50px;
    }

    .nav-links {
      display: flex;
      gap: 1.5rem;
    }

    .nav-links a {
      text-decoration: none;
      color: #333;
      font-weight: 500;
      font-size: 16px;
    }

    .nav-links a:hover {
      color: #007bff;
    }

    .menu-icon {
      display: none;
      font-size: 24px;
      cursor: pointer;
    }

    .mobile-menu {
      display: none;
      flex-direction: column;
      gap: 1rem;
      margin-top: 10px;
    }

    .mobile-menu a {
      text-decoration: none;
      color: #333;
      font-size: 16px;
    }

    /* Responsive styles */
    @media (max-width: 768px) {
      .nav-links {
        display: none;
      }

      .menu-icon {
        display: block;
      }

      .mobile-menu {
        display: none;
        background-color: #f9f9f9;
        padding: 1rem;
        border-radius: 4px;
      }

      .mobile-menu.show {
        display: flex;
      }

        @media(min-width: 768px) {
            .cta-stats {
                grid-template-columns: repeat(3, 1fr);
            }
        }
    }
    body {
      font-family: Arial, sans-serif;
      margin: 0;
      padding: 0;
    }


    body {
      margin: 0;
      font-family: 'Inter', sans-serif;
      background-color: #fff;
      color: #333;
    }

    .hero {
      position: relative;
      background: linear-gradient(to right, #1e3a8a, #6b21a8);
      color: white;
      padding: 100px 20px;
      text-align: center;
      overflow: hidden;
    }

    .hero::before {
      content: "";
      background: url('https://readdy.ai/api/search-image?query=AI%20learning%20environment%20with%20students%20studying%20machine%20learning%2C%20modern%20classroom%20with%20neural%20network%20displays%2C%20diverse%20group%20of%20people%20coding%2C%20futuristic%20education%20technology%2C%20interactive%20AI%20tutorials%2C%20collaborative%20learning%20atmosphere&width=1200&height=600&seq=courses-hero&orientation=landscape') no-repeat center center/cover;
      position: absolute;
      top: 0; left: 0; right: 0; bottom: 0;
      filter: brightness(0.3);
      z-index: 0;
    }

    .hero h1, .hero p {
      position: relative;
      z-index: 1;
    }

    .hero h1 {
      font-size: 3rem;
      margin-bottom: 20px;
    }

    .hero p {
      font-size: 1.25rem;
      max-width: 700px;
      margin: 0 auto;
    }

    .courses-section {
      padding: 80px 20px;
      max-width: 1200px;
      margin: auto;
    }

    .courses-section h2 {
      font-size: 2.5rem;
      text-align: center;
      margin-bottom: 10px;
    }

    .courses-section p {
      text-align: center;
      color: #666;
      max-width: 700px;
      margin: 0 auto 40px;
    }

    .courses-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 30px;
    }

    .course-card {
      background: #fff;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 4px 12px rgba(0,0,0,0.1);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .course-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 6px 16px rgba(0,0,0,0.15);
    }

    .course-card img {
      width: 100%;
      height: 180px;
      object-fit: cover;
    }

    .course-card .content {
      padding: 20px;
    }

    .course-card .meta {
      display: flex;
      justify-content: space-between;
      margin-bottom: 10px;
    }

    .course-card .meta span {
      font-size: 0.8rem;
      padding: 4px 8px;
      border-radius: 999px;
    }

    .course-card .level {
      background: #dbeafe;
      color: #1e3a8a;
    }

    .course-card .duration {
      color: #555;
    }

    .course-card h3 {
      font-size: 1.25rem;
      margin: 10px 0;
    }

    .course-card p {
      font-size: 0.95rem;
      color: #555;
    }

    .course-card .rating {
      margin-top: 10px;
      font-size: 0.85rem;
      color: #777;
    }

    .course-card .rating i {
      color: gold;
      margin-right: 4px;
    }
    body {
      font-family: Arial, sans-serif;
    }

    .header {
      background-color: #ffffff;
      box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
      padding: 1rem 0;
      position: sticky;
      top: 0;
      z-index: 1000;
    }

    .container {
      max-width: 1200px;
      margin: auto;
      padding: 0 20px;
    }

    .header-content {
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .logo {
      height: 50px;
    }

    .nav-links {
      display: flex;
      gap: 1.5rem;
    }

    .nav-links a {
      text-decoration: none;
      color: #333;
      font-weight: 500;
      font-size: 16px;
    }

    .nav-links a:hover {
      color: #007bff;
    }

    .menu-icon {
      display: none;
      font-size: 24px;
      cursor: pointer;
    }

    .mobile-menu {
      display: none;
      flex-direction: column;
      gap: 1rem;
      margin-top: 10px;
    }

    .mobile-menu a {
      text-decoration: none;
      color: #333;
      font-size: 16px;
    }

    /* Responsive styles */
    @media (max-width: 768px) {
      .nav-links {
        display: none;
      }

      .menu-icon {
        display: block;
      }

      .mobile-menu {
        display: none;
        background-color: #f9f9f9;
        padding: 1rem;
        border-radius: 4px;
      }

      .mobile-menu.show {
        display: flex;
      }

        @media(min-width: 768px) {
            .cta-stats {
                grid-template-columns: repeat(3, 1fr);
            }
        }
    }
    
    .footer {
      background-color: #35383b;
      padding: 40px 20px 20px;
      color: #ffffff;
    }

    .footer-container {
      display: flex;
      flex-wrap: wrap;
      max-width: 1200px;
      margin: auto;
      gap: 30px;
      justify-content: space-between;
    }

    .footer-col {
      flex: 1 1 200px;
    }

    .footer h3, .footer h4 {
      color: #ffffff;
      margin-bottom: 15px;
    }

    .footer p {
      font-size: 14px;
      line-height: 1.6;
    }

    .footer ul {
      list-style: none;
      padding: 0;
    }

    .footer ul li {
      margin-bottom: 10px;
    }

    .footer ul li a {
      text-decoration: none;
      color: #c8c0c0;
      font-size: 14px;
      transition: color 0.3s ease;
    }

    .footer ul li a:hover {
      color: #d2d6db;
    }

    .social-icons a {
      display: inline-block;
      margin-right: 10px;
      font-size: 20px;
      color: #fdfdfd;
      text-decoration: none;
    }

    .footer-bottom {
      text-align: center;
      color: #ffffff;
      margin-top: 30px;
      padding-top: 15px;
      border-top: 1px solid #ccc;
      font-size: 14px;
    }

    @media (max-width: 768px) {
      .footer-container {
        flex-direction: column;
        text-align: center;
      }

      .footer-col {
        margin-bottom: 30px;
      }

      .social-icons a {
        margin: 5px;
      }
    }

    body {
      margin: 0;
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      color: #1e293b;
      background-color: #f8f9fa;
    }

    /* Hero Section */
    .hero-section {
      position: relative;
      background: linear-gradient(to right, #1e3a8a, #1d4ed8);
      padding: 80px 20px;
      color: white;
      overflow: hidden;
    }

    .hero-bg {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-image: url('https://readdy.ai/api/search-image?query=Modern%20technology%20office%20workspace%20with%20AI%20neural%20network%20visualizations%2C%20futuristic%20digital%20environment%2C%20professional%20team%20collaboration%2C%20clean%20minimalist%20design%2C%20soft%20blue%20lighting%2C%20high-tech%20atmosphere%2C%20people%20working%20with%20advanced%20AI%20systems%2C%20contemporary%20office%20interior&width=1200&height=600&seq=about-hero&orientation=landscape');
      background-size: cover;
      background-position: center;
      filter: brightness(0.3);
      z-index: 0;
    }

    .hero-content {
      position: relative;
      max-width: 1100px;
      margin: 0 auto;
      padding: 0 20px;
      text-align: center;
      z-index: 1;
    }

    .hero-content h1 {
      font-size: 3rem;
      font-weight: bold;
      margin-bottom: 24px;
    }

    .hero-content p {
      font-size: 1.25rem;
      max-width: 800px;
      margin: 0 auto 32px;
    }

    .hero-content h2 {
      font-size: 2rem;
      font-style: italic;
      margin-bottom: 40px;
    }

    .stats-container {
      display: flex;
      flex-direction: column;
      gap: 20px;
      justify-content: center;
      align-items: center;
    }

    .stat-card {
      background-color: rgba(255, 255, 255, 0.2);
      backdrop-filter: blur(6px);
      border-radius: 12px;
      padding: 20px 30px;
      min-width: 200px;
    }

    .stat-card .value {
      font-size: 2rem;
      font-weight: bold;
    }

    .stat-card .label {
      font-size: 0.9rem;
    }

    /* Contact Section */
    .contact-section {
      padding: 60px 20px;
      background-color: #f1f5f9;
      text-align: center;
    }

    .contact-section h2 {
      font-size: 2rem;
      margin-bottom: 10px;
      color: #0f172a;
    }

    .contact-section p {
      font-size: 1.1rem;
      margin: 0 auto;
      color: #334155;
      max-width: 600px;
    }

    /* Team Section */
    .team-section {
      padding: 80px 20px;
      background-color: #e0f2fe;
      color: #1e293b;
    }

    .container {
      max-width: 1000px;
      margin: 0 auto;
      text-align: center;
    }

    .team-section h2 {
      font-size: 2.5rem;
      margin-bottom: 10px;
      color: #0f172a;
    }

    .team-section p {
      font-size: 1.1rem;
      margin-bottom: 40px;
      color: #334155;
    }

    .team-card {
      background: white;
      padding: 30px;
      border-radius: 16px;
      box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
      display: inline-block;
      max-width: 400px;
      margin: 0 auto;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .team-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    }

    .team-card img {
      width: 180px;
      height: 180px;
      object-fit: cover;
      border-radius: 50%;
      margin-bottom: 20px;
      border: 4px solid #0ea5e9;
    }

    .team-card h3 {
      font-size: 1.5rem;
      margin-bottom: 8px;
      color: #0f172a;
    }

    .team-card .role {
      font-size: 1rem;
      color: #475569;
    }

    @media (min-width: 640px) {
      .stats-container {
        flex-direction: row;
      }

      .hero-content h1 {
        font-size: 4rem;
      }

      .hero-content h2 {
        font-size: 2.5rem;
      }
    }

    @media (max-width: 600px) {
      .team-card {
        padding: 20px;
      }

      .team-card img {
        width: 140px;
        height: 140px;
      }

      .team-section h2 {
        font-size: 2rem;
      }
    }
    body {
      font-family: Arial, sans-serif;
    }

    .header {
      background-color: #ffffff;
      box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
      padding: 1rem 0;
      position: sticky;
      top: 0;
      z-index: 1000;
    }

    .container {
      max-width: 1200px;
      margin: auto;
      padding: 0 20px;
    }

    .header-content {
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .logo {
      height: 50px;
    }

    .nav-links {
      display: flex;
      gap: 1.5rem;
    }

    .nav-links a {
      text-decoration: none;
      color: #333;
      font-weight: 500;
      font-size: 16px;
    }

    .nav-links a:hover {
      color: #007bff;
    }

    .menu-icon {
      display: none;
      font-size: 24px;
      cursor: pointer;
    }

    .mobile-menu {
      display: none;
      flex-direction: column;
      gap: 1rem;
      margin-top: 10px;
    }

    .mobile-menu a {
      text-decoration: none;
      color: #333;
      font-size: 16px;
    }

    /* Responsive styles */
    @media (max-width: 768px) {
      .nav-links {
        display: none;
      }

      .menu-icon {
        display: block;
      }

      .mobile-menu {
        display: none;
        background-color: #f9f9f9;
        padding: 1rem;
        border-radius: 4px;
      }

      .mobile-menu.show {
        display: flex;
      }

        @media(min-width: 768px) {
            .cta-stats {
                grid-template-columns: repeat(3, 1fr);
            }
        }
    }
    body {
      font-family: Arial, sans-serif;
      margin: 0;
      padding: 0;
    }

    .footer {
      background-color: #35383b;
      padding: 40px 20px 20px;
      color: #ffffff;
    }

    .footer-container {
      display: flex;
      flex-wrap: wrap;
      max-width: 1200px;
      margin: auto;
      gap: 30px;
      justify-content: space-between;
    }

    .footer-col {
      flex: 1 1 200px;
    }

    .footer h3, .footer h4 {
      color: #ffffff;
      margin-bottom: 15px;
    }

    .footer p {
      font-size: 14px;
      line-height: 1.6;
    }

    .footer ul {
      list-style: none;
      padding: 0;
    }

    .footer ul li {
      margin-bottom: 10px;
    }

    .footer ul li a {
      text-decoration: none;
      color: #c8c0c0;
      font-size: 14px;
      transition: color 0.3s ease;
    }

    .footer ul li a:hover {
      color: #d2d6db;
    }

    .social-icons a {
      display: inline-block;
      margin-right: 10px;
      font-size: 20px;
      color: #fdfdfd;
      text-decoration: none;
    }

    .footer-bottom {
      text-align: center;
      color: #ffffff;
      margin-top: 30px;
      padding-top: 15px;
      border-top: 1px solid #ccc;
      font-size: 14px;
    }

    @media (max-width: 768px) {
      .footer-container {
        flex-direction: column;
        text-align: center;
      }

      .footer-col {
        margin-bottom: 30px;
      }

      .social-icons a {
        margin: 5px;
      }
    }
  /* ===== Privacy Policy Section (Scoped Styles) ===== */
.privacy-section {
  padding: 40px 20px;
  background-color: #f9fafb;
}

.privacy-container {
  max-width: 900px;
  margin: 0 auto;
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.privacy-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: #1a202c;
  text-align: center;
}

.privacy-intro {
  font-size: 1.1rem;
  margin-bottom: 20px;
  color: #4a5568;
  text-align: center;
}

.privacy-heading {
  font-size: 1.3rem;
  margin-top: 25px;
  margin-bottom: 10px;
  color: #2d3748;
}

.privacy-container p {
  font-size: 1rem;
  line-height: 1.6;
  color: #4a5568;
}

.privacy-container a {
  color: #3182ce;
  text-decoration: none;
}

.privacy-container a:hover {
  text-decoration: underline;
}


.terms-section {
  padding: 40px 20px;
  background-color: #f9fafb;
}

.terms-container {
  max-width: 900px;
  margin: 0 auto;
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.terms-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: #1a202c;
  text-align: left;
}

.terms-intro {
  font-size: 1.1rem;
  margin-bottom: 20px;
  color: #4a5568;
  text-align: left;
}

.terms-heading {
  font-size: 1.3rem;
  margin-top: 25px;
  margin-bottom: 10px;
  color: #2d3748;
}

.terms-container p {
  font-size: 1rem;
  line-height: 1.7;
  color: #4a5568;
  margin-bottom: 15px;
  text-align: left;  /* Ensure left alignment */
}

.terms-container ul {
  margin: 15px 0 20px 20px;
  padding: 0;
  list-style-type: disc;
}

.terms-container ul li {
  margin-bottom: 10px;
  font-size: 1rem;
  color: #4a5568;
}

.terms-container strong {
  color: #2d3748;
  font-weight: 600;
}

.terms-container a {
  color: #3182ce;
  text-decoration: none;
}

.terms-container a:hover {
  text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
  .terms-container {
    padding: 20px;
  }
  .terms-title {
    font-size: 1.8rem;
  }
  .terms-heading {
    font-size: 1.2rem;
  }
}
