/* Body uses Roboto */
body {
    font-family: 'Roboto', sans-serif;
}

/* Headers use Inter 700 */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
}

/* Ensure any elements using the utility .font-bold also display Inter */
.font-bold {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
}

/* FAQ accordion CSS */

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.accordion-content.active {
    max-height: 200px;
    transition: max-height 0.3s ease-in;
}

.chevron {
    transition: transform 0.3s ease;
}

.chevron.rotate {
    transform: rotate(180deg);
}