/* faqs.css */
#faqs {
    font-family: var(--font-main);
  }
  
  .faq-question {
    cursor: pointer;
  }
  
  .faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease, padding 0.3s ease;
  }
  
  .faq-answer.open {
    max-height: 500px;
    padding-top: 0.5rem;
  }
  