.faq-section {
    border-top: 1px solid var(--dark-grey);
    margin-top: 5vh;
  }
  
  .faq-item {
    border-bottom: 1px solid var(--dark-grey);
  }
  
  .faq-question {
    background: none;
    color: var(--text);
    font-family: var(--font2);
    font-size: 1.8rem;
    padding: 1rem;
    width: 100%;
    text-align: left;
    border: none;
    outline: none;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: color 0.3s ease;
  }
  
  .faq-question:hover {
    color: var(--mid-grey);
  }
  
  .faq-toggle-icon {
    font-size: 3rem;
    color: var(--light-grey);
    transition: transform 0.3s ease;
  }
  
  .faq-question[aria-expanded="true"] .faq-toggle-icon {
    transform: rotate(-135deg);
  }
  
  .faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 1rem;
    transition: max-height 0.4s ease, opacity 0.4s ease;
    opacity: 0;
  }

  .faq-answer p {
    color: var(--light-grey);
  }
  
  .faq-answer form {
  margin-top: 1rem;
  opacity: 1;
}

  
  .faq-answer.open {
    opacity: 1;
    padding-bottom: 1rem;
  }


  @media (max-width: 768px) {
    .faq-question {
      font-size: 1.3rem;
      padding: 0.8rem 0.5rem;
    }
  
    .faq-toggle-icon {
      font-size: 1.5rem;
    }
  
    .faq-answer {
      padding: 0 0.5rem;
    }
  
    .faq-answer p {
      font-size: 1.3rem;
    }
  }
  
