body {
    font-family: 'Inter', sans-serif;
}
h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
}
.faq-question {
    cursor: pointer;
    transition: background-color 0.2s ease;
}
.faq-question:hover {
    background-color: #f9fafb;
}
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, padding 0.4s ease-out;
    padding-top: 0;
    padding-bottom: 0;
}
.faq-item.active .faq-answer {
    max-height: 500px; /* Adjust if answers are very long */
    padding-top: 1rem;
    padding-bottom: 1.5rem;
    transition: max-height 0.5s ease-in, padding 0.5s ease-in;
}
.faq-item.active .faq-icon {
    transform: rotate(180deg);
}
.faq-icon {
    transition: transform 0.3s ease;
}
.cta-section {
     background-color: #1d4ed8;
}
