.faq-page {
    width: min(100% - 40px, 960px);
    margin: 0 auto;
    padding: 64px 0 90px;
}

.faq-hero {
    margin-bottom: 38px;
    text-align: center;
}

.faq-eyebrow {
    margin: 0 0 10px;
    color: #1a5c4e;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.faq-hero h1 {
    margin: 0;
    color: #1f2d28;
    font-size: clamp(32px, 5vw, 48px);
    line-height: 1.2;
    letter-spacing: -0.05em;
}

.faq-hero > p:last-child {
    margin: 18px 0 0;
    color: #66736c;
    font-size: 17px;
    line-height: 1.7;
}

.faq-list {
    overflow: hidden;
    border: 1px solid rgba(26, 92, 78, 0.14);
    border-radius: 22px;
    background: #fff;
    box-shadow: 0 20px 50px rgba(15, 61, 46, 0.08);
}

.faq-list details + details {
    border-top: 1px solid rgba(26, 92, 78, 0.1);
}

.faq-list summary {
    position: relative;
    padding: 22px 64px 22px 26px;
    color: #203a31;
    font-size: 17px;
    font-weight: 700;
    line-height: 1.55;
    cursor: pointer;
    list-style: none;
}

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

.faq-list summary::after {
    content: '+';
    position: absolute;
    top: 50%;
    right: 26px;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(52, 177, 151, 0.12);
    color: #1a5c4e;
    font-size: 20px;
    line-height: 27px;
    text-align: center;
    transform: translateY(-50%);
}

.faq-list details[open] summary::after {
    content: '−';
}

.faq-answer {
    padding: 0 26px 24px;
}

.faq-answer p {
    margin: 0;
    color: #5f6d67;
    font-size: 15px;
    line-height: 1.85;
}

.faq-links {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 28px;
    margin-top: 34px;
    padding: 28px;
    border-radius: 22px;
    background: #f3f8f5;
}

.faq-links h2 {
    margin: 0;
    color: #203a31;
    font-size: 21px;
    letter-spacing: -0.03em;
}

.faq-links nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 8px;
}

.faq-links a {
    padding: 9px 13px;
    border: 1px solid rgba(26, 92, 78, 0.16);
    border-radius: 999px;
    background: #fff;
    color: #1a5c4e;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
}

.faq-links a:hover,
.faq-links a:focus-visible {
    border-color: #1a5c4e;
    background: #1a5c4e;
    color: #fff;
}

@media (max-width: 767px) {
    .faq-page {
        width: min(100% - 28px, 960px);
        padding: 42px 0 64px;
    }

    .faq-hero > p:last-child {
        font-size: 15px;
    }

    .faq-list summary {
        padding: 19px 54px 19px 20px;
        font-size: 15px;
    }

    .faq-list summary::after {
        right: 18px;
    }

    .faq-answer {
        padding: 0 20px 21px;
    }

    .faq-links {
        align-items: flex-start;
        flex-direction: column;
        padding: 24px 20px;
    }

    .faq-links nav {
        justify-content: flex-start;
    }
}
