/* FAQ Section */
.faq-section {
    padding: 6rem 0;
    background: linear-gradient(to bottom, #000000, #111111, #0c0c0c);
    color: #fff;
    display: flex;
    justify-content: center;
  }
  
  .faq-container {
    width: 100%;
    max-width: 1100px;
    padding: 0 2rem;
  }
  
  .faq-container > * {
    grid-column: 2;
  }
  
  .faq-header {
    text-align: center;
    margin-bottom: 3rem;
  }
  
  .faq-header h1 {
    color: #fff;
    font-size: 2rem;
    margin-bottom: 1rem;
    font-weight: 600;
    font-family: "Geist", sans-serif;
  }
  
  .faq-header p {
    color: rgba(136, 136, 136, 0.9);
    font-size: 1rem;
    font-family: "Geist Mono", monospace;
  }
  
  .faq-grid {
    margin-top: 2rem;
  }
  
  .faq-item {
    background: rgba(12, 12, 12, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 1.5rem;
    cursor: pointer;
    transition: all 0.2s ease;
    margin-bottom: 1rem; 
  }
  
  .faq-item:hover {
    border-color: rgba(255, 255, 255, 0.2);
    background: rgba(12, 12, 12, 0.8);
  }
  
  .faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #fff;
    font-size: 1.1rem;
    font-weight: 500;
    font-family: "Geist", sans-serif;
  }
  
  .faq-answer {
    color: rgba(136, 136, 136, 0.9);
    font-size: 0.95rem;
    margin-top: 0;
    line-height: 1.6;
    font-family: "Geist Mono", monospace;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, opacity 0.4s ease, margin-top 0.4s ease;
  }
  
  .faq-item.active .faq-answer {
    margin-top: 1rem;
    max-height: 500px;
    opacity: 1;
  }
  
  .faq-toggle {
    position: relative;
    width: 24px;
    height: 24px;
    transition: transform 0.2s ease;
  }
  
  .faq-toggle::before,
  .faq-toggle::after {
    content: "";
    position: absolute;
    background: #fff;
    border-radius: 1px;
  }
  
  .faq-toggle::before {
    width: 2px;
    height: 12px;
    left: 11px;
    top: 6px;
  }
  
  .faq-toggle::after {
    width: 12px;
    height: 2px;
    left: 6px;
    top: 11px;
  }
  
  .faq-item.active .faq-toggle {
    transform: rotate(45deg);
  }
  
  @media (max-width: 768px) {
    .faq-container {
      padding: 1rem;
    }
  
    .faq-header {
      margin-bottom: 2rem;
    }
  
    .faq-header h1 {
      font-size: 1.75rem;
    }
  
    .faq-item {
      border-radius: 8px;
      padding: 1.25rem;
      margin-bottom: 0.75rem;
    }
  }
  