.faq_v01 {
    padding: var(--website-padding-top-bottom) 0;
    background-color: var(--website-bkg-light, #F9F9F9);
}

.faq_v01__layout {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

@media (min-width: 992px) {
    .faq_v01__layout {
        flex-direction: row;
        align-items: flex-start;
        justify-content: space-between;
        gap: 4rem;
    }
    .faq_v01__left {
        flex-shrink: 0;
        max-width: 400px;
    }
    .faq_v01__right {
        flex: 1;
    }
}

/* Left column */
.faq_v01__overtitle {
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--website-secondary, #5C6D78);
    margin-bottom: 0.875rem;
}

.faq_v01__title {
    font-size: 2rem;
    font-weight: 400;
    color: var(--website-accent, #2B3338);
    line-height: 1;
    text-transform: uppercase;
    margin-bottom: 0.875rem;
}

@media (min-width: 768px) {
    .faq_v01__title {
        font-size: 2.625rem;
    }
}

@media (min-width: 992px) {
    .faq_v01__title {
        font-size: 3.5rem;
    }
}

.faq_v01__description {
    font-size: 1rem;
    color: var(--website-secondary, #5C6D78);
    line-height: 1.3;
    max-width: 521px;
    margin-bottom: 2rem;
}

.faq_v01__cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.625rem;
    background-color: var(--website-primary);
    color: #fff;
    padding: 1rem 1.5rem;
    font-size: 1.25rem;
    font-weight: 600;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.faq_v01__cta-btn:hover {
    background-color: var(--website-primary-dark);
    color: #fff;
}

/* Right column - accordion */
.faq_v01__right {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.faq_v01__item {
    border: 1px solid var(--website-secondary, #5C6D78);
    border-radius: 4px;
    overflow: hidden;
}

.faq_v01__trigger {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem;
    text-align: left;
    background: transparent;
    border: none;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.faq_v01__trigger:hover {
    background-color: rgba(0, 0, 0, 0.02);
}

.faq_v01__question {
    font-size: 1.25rem;
    font-weight: 400;
    color: var(--website-accent, #2B3338);
    line-height: 1.3;
    padding-right: 1rem;
}

.faq_v01__chevron {
    flex-shrink: 0;
    color: var(--website-secondary, #5C6D78);
    transition: transform 0.3s ease;
}

.faq_v01__trigger[aria-expanded="true"] .faq_v01__chevron {
    transform: rotate(180deg);
}

.faq_v01__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq_v01__answer-inner {
    padding: 0 1.5rem 1.5rem;
    font-size: 1rem;
    color: var(--website-secondary, #5C6D78);
    line-height: 1.3;
}
