.faq-main {
    padding-top: 4rem;
    min-height: 100vh;
    background: var(--background);
  }
  
  .faq-hero {
    background: var(--card-bg);
    padding: 4rem 2rem;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
  
  .faq-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    background: linear-gradient(to right, var(--primary), var(--accent));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    animation: fadeInUp 1s ease;
  }
  
  .faq-hero p {
    font-size: 1.25rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
    animation: fadeInUp 1s ease 0.2s backwards;
  }
  
  .faq-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 4rem 2rem;
  }
  
  .faq-item {
    background: var(--card-bg);
    border-radius: 0.75rem;
    padding: 2rem;
    margin-bottom: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    animation: fadeInUp 0.6s ease backwards;
  }
  
  .faq-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  }
  
  .faq-item h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary);
  }
  
  .faq-item p {
    color: var(--text-muted);
    line-height: 1.6;
  }
  
  @media (max-width: 768px) {
    .faq-hero h1 {
      font-size: 2.5rem;
    }
  
    .faq-hero p {
      font-size: 1rem;
    }
  
    .faq-item {
      padding: 1.5rem;
    }
  
    .faq-item h2 {
      font-size: 1.25rem;
    }
  }
  
  @keyframes fadeInUp {
    from {
      opacity: 0;
      transform: translateY(20px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  