/* ─── FAQ accordion section ──────────────────────────────────────────────── */

.bh-faq {
    background: #fff;
    padding: 56px 16px;
}

.bh-faq__inner {
    max-width: 760px;
    margin: 0 auto;
}

.bh-faq__heading {
    font-size: 28px;
    font-weight: 700;
    color: #22313f;
    text-align: center;
    letter-spacing: normal;
    margin: 0 0 36px;
}

/* ─── FAQ item ───────────────────────────────────────────────────────────── */

.bh-faq-item {
    border-bottom: 1px solid #e8e8e8;
}

.bh-faq-item:first-child {
    border-top: 1px solid #e8e8e8;
}

.bh-faq-item__trigger {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    width: 100%;
    padding: 28px 0;
    background: none;
    border: none;
    text-align: left;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    color: #09283a;
    line-height: 1.4;
}

.bh-faq-item__trigger:hover {
    color: #1a6bab;
}

.bh-faq-item__chevron {
    flex-shrink: 0;
    color: #6c7a84;
    transition: transform 220ms ease;
}

.bh-faq-item__trigger[aria-expanded="true"] .bh-faq-item__chevron {
    transform: rotate(180deg);
}

.bh-faq-item__panel {
    padding: 0 0 28px;
}

.bh-faq-item__panel p {
    font-size: 15px;
    color: #6c7a84;
    line-height: 1.7;
    margin: 0;
}

@media (max-width: 599px) {
    .bh-faq {
        padding: 40px 16px;
    }

    .bh-faq__heading {
        font-size: 22px;
    }

    .bh-faq-item__trigger {
        font-size: 15px;
        padding: 15px 0;
    }
}
