/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  html, body {
    font-family: 'Poppins', sans-serif;
    background: #0a0a0a;
    color: #e0f7fa;
    scroll-behavior: smooth;
  }
  
  .container {
    width: 85%;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
  }
  
  /* Navbar */
  .navbar {
    position: sticky;
    top: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 999;
    padding: 15px 0;
    backdrop-filter: blur(10px);
  }
  
  .nav-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  
  .nav-logo {
    width: 80px;
    margin-bottom: 10px;
  }
  
  .nav-links {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
  }
  
  .nav-links li a {
    text-decoration: none;
    color: #b2ebf2;
    font-weight: 600;
    transition: color 0.3s ease;
  }
  
  .nav-links li a.active,
  .nav-links li a:hover {
    color: #00e5ff;
  }
  
  /* Burger Menu */
  .burger {
    display: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
    margin-top: 10px;
  }
  
  .burger div {
    width: 25px;
    height: 3px;
    background: #00e5ff;
    border-radius: 3px;
    transition: all 0.3s ease;
  }
  
  /* FAQ Section */
  .faq-section {
    padding: 80px 0;
  }
  
  h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: #00e5ff;
  }
  
  .accordion {
    text-align: left;
  }
  
  .accordion-item {
    background: #121212;
    border: 1px solid #00e5ff33;
    margin-bottom: 10px;
    border-radius: 8px;
    overflow: hidden;
  }
  
  .accordion-header {
    width: 100%;
    padding: 15px 20px;
    text-align: left;
    font-size: 1.1rem;
    background: #121212;
    color: #00e5ff;
    border: none;
    outline: none;
    cursor: pointer;
    font-weight: 600;
    transition: background 0.3s ease;
  }
  
  .accordion-header:hover {
    background: #0d0d0d;
  }
  
  .accordion-content {
    max-height: 0;
    overflow: hidden;
    padding: 0 20px;
    color: #e0f7fa;
    transition: max-height 0.3s ease, padding 0.3s ease;
  }
  
  .accordion-content p {
    padding: 15px 0;
    font-size: 1rem;
  }
  
  /* Active State */
  .accordion-item.active .accordion-content {
    max-height: 500px;
    padding: 15px 20px;
  }
  
  /* Footer */
  footer {
    text-align: center;
    padding: 20px;
    background: #0d0d0d;
    font-size: 0.9rem;
    color: #b2ebf2;
  }
  
  footer a:hover i {
    color: #00bcd4;
    transition: color 0.3s ease;
  }
  
  /* Fade-in */
  .fade-in-up {
    opacity: 0;
    transform: translateY(40px);
    animation: fadeInUp 1s ease forwards;
    will-change: transform, opacity;
  }
  
  @keyframes fadeInUp {
    to { opacity: 1; transform: none; }
  }
  
  /* Responsive */
  @media (max-width: 768px) {
    .nav-links {
      position: fixed;
      top: 0;
      right: -100%;
      height: 100vh;
      width: 200px;
      background: rgba(0, 0, 0, 0.95);
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 25px;
      transition: right 0.3s ease;
    }
  
    .nav-links.active {
      right: 0;
    }
  
    .burger {
      display: flex;
    }
  
    h2 {
      font-size: 2rem;
    }
  
    .accordion-header {
      font-size: 1rem;
      padding: 12px 16px;
    }
  
    .accordion-content p {
      font-size: 0.95rem;
    }
  }
  footer {
    text-align: center;
    padding: 20px;
    background: #0d0d0d;
    font-size: 0.9rem;
    color: #b2ebf2;
  }
  
  .footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin-top: 10px;
  }
  
  .footer-links a {
    text-decoration: none;
    color: #b2ebf2; /* softer blue, matches navbar at rest */
    transition: color 0.3s ease;
  }
  
  .footer-links a:hover {
    color: #00e5ff; /* bright blue hover effect */
  }
  html {
    scroll-behavior: smooth;
  }
  .nav-links li a.cta {
    padding: 8px 15px;
    background: #00e5ff;
    color: #0a0a0a !important;
    border-radius: 5px;
    font-weight: 700;
    transition: background 0.3s ease, color 0.3s ease;
  }
  
  .nav-links li a.cta:hover {
    background: #00bcd4;
    color: #fff !important;
  }
  