#faq {
    padding-top: 100px;
    padding-bottom: 80px;
}

.faq-title {
    color: #fb0a01;
    font-size: 3rem;
    font-family: zlb;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}

.faq-accordion {
    border-top: 1px solid #eee;
}

.faq-item {
    border-bottom: 1px solid #eee;
}

.faq-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.25rem 1.5rem;
    cursor: pointer;
    background: #fff;
}

.faq-header.active {
    background: #b71d21;
}

.faq-number {
    flex: 0 0 auto;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 2px solid #e16111;
    color: #e16111;
    font-size: 0.8rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

.faq-header.active .faq-number {
    border-color: #e16111;
    background: #e16111;
    color: #fff;
}

.faq-question {
    flex: 1 1 auto;
    font-size: 1rem;
    color: #333;
    font-family: jkt;
}

.faq-header.active .faq-question {
    color: #fff;
    font-weight: 600;
}

.faq-icon {
    flex: 0 0 auto;
    color: #ccc;
    font-size: 0.9rem;
}

.faq-header.active .faq-icon {
    color: #fff;
}

.faq-body {
    display: grid;
    grid-template-rows: minmax(0, 0fr);
    overflow: hidden;
    background: #e16111;
    transition: grid-template-rows 0.3s ease;
}

.faq-body.show {
    grid-template-rows: minmax(0, 1fr);
}

.faq-body-inner {
    min-height: 0;
    padding: 1.5rem 1.5rem 1.5rem calc(32px + 1.5rem + 1.5rem);
    color: #fff;
    font-size: 0.95rem;
    line-height: 1.6;
    font-family: jkt;
}

.faq-header {
    transition: background 0.25s ease;
}

.faq-number,
.faq-question,
.faq-icon {
    transition:
        color 0.25s ease,
        border-color 0.25s ease,
        background 0.25s ease;
}

@media (max-width: 768px) {
    .faq-title {
        font-size: 2rem;
    }
}
