.faq-section {
    padding: 30px 0;
    position: relative;
    z-index: 2;
  }
  
  .faq-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    max-width: 800px;
    margin: 0 auto;
  }
  
  .faq-item {
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 0.75rem;
    overflow: hidden;
  }
  
  .faq-question {
    padding: 1.25rem;
    font-size: 1.125rem;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.2s ease;
  }
  
  .faq-question:hover {
    color: #3b82f6;
  }
  
  .faq-question svg {
    width: 20px;
    height: 20px;
    color: #3b82f6;
    transition: transform 0.2s ease;
  }
  
  .faq-item.active .faq-question svg {
    transform: rotate(180deg);
  }
  
  .faq-answer {
    padding: 0 1.25rem 1.25rem;
    font-size: 1rem;
    opacity: 0.8;
    line-height: 1.6;
    display: none;
  }
  
  .faq-item.active .faq-answer {
    display: block;
  }