/* 自定义样式 */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&display=swap');

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
}

/* For FAQ section, rotates the icon on click */
.faq-answer.hidden {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease-out;
}

.faq-answer:not(.hidden) {
    max-height: 500px; /* Adjust as needed */
    padding-top: 1rem;
    transition: max-height 0.3s ease-in, padding 0.3s ease-in;
}

.faq-answer.hidden + .flex i {
    transform: rotate(0deg);
}

.faq-answer:not(.hidden) + .flex i {
    transform: rotate(180deg);
}
