.faq-section {
    padding: 90px 0;
    background: #fff;
}

.faq-section .header-block {
    text-align: center;
    margin-bottom: 36px;
}

.faq-section .eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #9aa3b5;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    font-size: 0.85rem;
}

.faq-section .eyebrow i {
    color: var(--ce-color-primary);
    font-size: 1.1rem;
}

.faq-section h2 {
    font-weight: 800;
    font-size: 2.1rem;
    color: var(--ce-color-navy);
    margin: 12px 0 14px;
}

.faq-section .lead {
    color: #4b5567;
}

.faq-accordion {
    max-width: 900px;
    margin: 0 auto;
    border-top: 1px solid #eef0f4;
}

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

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    width: 100%;
    background: none;
    border: none;
    text-align: left;
    padding: 24px 0;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--ce-color-navy);
}

.faq-icon-close,
.faq-icon-plus {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
}

.faq-icon-close {
    border-radius: 8px;
    background: var(--ce-color-primary);
    color: #fff;
}

.faq-icon-plus {
    border-radius: 6px;
    border: 1px solid #d7dbe5;
    color: #9aa3b5;
}

/* Bootstrap 5's collapse JS toggles the "collapsed" class on the
   trigger button automatically based on shown/hidden state — used
   here to swap which icon shows, matching the design's blue-circle-X
   (expanded) vs outlined-square-plus (collapsed) treatment. */
.faq-question.collapsed .faq-icon-close {
    display: none;
}

.faq-question:not(.collapsed) .faq-icon-plus {
    display: none;
}

.faq-answer {
    padding: 0 0 28px;
    color: #4b5567;
    font-weight: 500;
    font-size: 0.95rem;
    line-height: 1.7;
    max-width: 720px;
}

.faq-answer p {
    margin-bottom: 14px;
}

.faq-answer p:last-child {
    margin-bottom: 0;
    font-weight: 600;
    color: #374151;
}

@media (max-width: 767px) {
    .faq-section h2 {
        font-size: 1.6rem;
    }

    .faq-question {
        font-size: 0.95rem;
    }
}
