.faq-list-9c3b1d7e {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* ── Item ── */
.faq-item-9c3b1d7e {
    border: 1.5px solid #7dc142;
    border-radius: 8px;
    overflow: hidden;
    background: #fff;
}

/* ── Header (button) ── */
.faq-header-9c3b1d7e {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 16px 20px;
    background: transparent;
    border: none;
    cursor: pointer;
    text-align: left;
}

/* ── Question ── */
.faq-question-9c3b1d7e {
    font-size: 1rem;
    font-weight: 700;
    color: #2d7a2d;
    line-height: 1.4;
    flex: 1;
}

/* ── Icon +/− via CSS ── */
.faq-icon-9c3b1d7e {
    flex-shrink: 0;
    font-size: 22px;
    font-weight: 300;
    color: #2d7a2d;
    line-height: 1;
    width: 1em;
    text-align: center;
    transition: transform 0.2s ease;
    user-select: none;
}

.faq-icon-9c3b1d7e::before {
    content: '+';
}

.faq-item-9c3b1d7e.is-open .faq-icon-9c3b1d7e::before {
    content: '−';
}

/* ── Body / Answer ── */
.faq-body-9c3b1d7e {
    overflow: hidden;
    padding: 0 20px 20px;
}

.faq-body-9c3b1d7e[hidden] {
    display: none;
}

.faq-answer-9c3b1d7e {
    font-size: 1rem;
    color: #333;
    line-height: 1.7;
}

.faq-answer-9c3b1d7e p {
    margin: 0 0 1em;
}

.faq-answer-9c3b1d7e p:last-child {
    margin-bottom: 0;
}
