.lzb-faq section {
    padding: 90px 0;
}

.lzb-faq .sec-tag {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-weight: 700;
    font-size: 12px;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--fairway, #1f7a4d);
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.lzb-faq .sec-tag:before {
    content: "";
    width: 30px;
    height: 2px;
    background: var(--brass, #c9a24b);
}

.lzb-faq h2.big {
    font-size: clamp(30px, 4.5vw, 48px);
    font-weight: 800;
    color: var(--ink, #0a1410);
    margin-bottom: 0;
    line-height: 1.04;
    letter-spacing: -.02em;
}

.lzb-faq .faq-wrap {
    max-width: 820px;
    margin: 0 auto;
}

.lzb-faq .faq {
    background: #fff;
    border: 1px solid var(--line-dark, rgba(10, 20, 16, .12));
    border-radius: 14px;
    margin-bottom: 14px;
    overflow: hidden;
    box-shadow: 0 10px 24px -20px rgba(0, 0, 0, .4);
}

.lzb-faq .faq summary {
    cursor: pointer;
    list-style: none;
    padding: 20px 24px;
    font-family: 'Bricolage Grotesque', sans-serif;
    font-weight: 700;
    font-size: 16.5px;
    color: var(--ink, #0a1410);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}

.lzb-faq .faq summary::-webkit-details-marker {
    display: none;
}

.lzb-faq .faq summary:after {
    content: "+";
    font-size: 24px;
    color: var(--brass, #c9a24b);
    font-weight: 400;
    transition: .2s;
}

.lzb-faq .faq[open] summary:after {
    transform: rotate(45deg);
}

.lzb-faq .faq .ans {
    padding: 0 24px 22px;
    font-size: 14.5px;
    color: #4d5e54;
    line-height: 1.6;
}

.lzb-faq .faq .ans ul {
    margin: 8px 0 0 18px;
}

@media (max-width: 640px) {
    .lzb-faq section {
        padding: 64px 0;
    }
}

.lzb-faq h2.big .acc {
    color: var(--fairway);
}