.faq-page {
    background: linear-gradient(180deg, #fff 0, #fff9fb 45%, #fff 100%);
    min-height: 70vh;
}

.faq-breadcrumbs {
    display: flex;
    gap: 0.6rem;
    margin-bottom: 2rem;
    color: #8d7b83;
    font-size: 0.8rem;
}

.faq-breadcrumbs a {
    color: #ad667f;
    text-decoration: none;
}

.faq-header {
    max-width: 760px;
    margin-bottom: 3rem;
}

.faq-kicker {
    display: block;
    margin-bottom: 0.65rem;
    color: #ad667f;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.faq-header h1 {
    margin: 0;
    color: #30252a;
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 600;
    line-height: 1.1;
}

.faq-header p {
    margin-top: 1rem;
    color: #71636a;
    font-size: 1rem;
    line-height: 1.7;
}

.faq-content {
    max-width: 920px;
}

.faq-category {
    margin: 2.5rem 0;
}

.faq-category:first-child {
    margin-top: 0;
}

.faq-category-title {
    margin: 0 0 1rem;
    color: #3d3036;
    font-size: 1.35rem;
    font-weight: 600;
}

.faq-category .faq-category {
    margin: 1.5rem 0 1rem 1.25rem;
    padding-left: 1.25rem;
    border-left: 2px solid #f1d9e1;
}

.faq-category .faq-category .faq-category-title {
    font-size: 1.05rem;
}

.faq-question {
    margin-bottom: 0.75rem;
    overflow: hidden;
    border: 1px solid #eee3e7;
    border-radius: 0.9rem;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 5px 24px rgba(75, 47, 58, 0.045);
    scroll-margin-top: 1.5rem;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.faq-question:target {
    border-color: #c48b9f;
    box-shadow: 0 8px 30px rgba(173, 102, 127, 0.16);
}

.faq-question summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.1rem 1.25rem;
    color: #3b3035;
    font-size: 0.95rem;
    font-weight: 600;
    line-height: 1.5;
    cursor: pointer;
    list-style: none;
}

.faq-question summary::-webkit-details-marker {
    display: none;
}

.faq-question summary:focus-visible {
    outline: 3px solid rgba(196, 139, 159, 0.35);
    outline-offset: -3px;
}

.faq-toggle {
    flex: 0 0 auto;
    color: #b06b83;
    transition: transform 0.2s ease;
}

.faq-question[open] > summary .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 1.25rem 1.25rem;
    color: #66585f;
    font-size: 0.92rem;
    line-height: 1.75;
}

.faq-answer-content > :first-child {
    margin-top: 0;
}

.faq-answer-content > :last-child {
    margin-bottom: 0;
}

.faq-answer-actions {
    display: flex;
    justify-content: flex-end;
    margin-top: 1rem;
}

.faq-copy-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.45rem 0.7rem;
    border: 1px solid #ead9df;
    border-radius: 0.55rem;
    background: #fff9fb;
    color: #9c5870;
    font: inherit;
    font-size: 0.78rem;
    font-weight: 600;
    line-height: 1.2;
    cursor: pointer;
    transition: background-color 0.2s ease, border-color 0.2s ease;
}

.faq-copy-link:hover {
    border-color: #d8afbd;
    background: #fff1f5;
}

.faq-copy-link:focus-visible {
    outline: 3px solid rgba(196, 139, 159, 0.35);
    outline-offset: 2px;
}

.faq-copy-link .material-icons {
    font-size: 1rem;
}

.faq-answer-content a {
    color: #ad667f;
    text-decoration: underline;
}

.faq-answer-content ul,
.faq-answer-content ol {
    margin: 0.8rem 0;
    padding-left: 1.4rem;
}

.faq-subquestions {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #f1e8eb;
}

.faq-subquestions .faq-question {
    box-shadow: none;
}

.faq-subquestions .faq-question:target {
    box-shadow: 0 8px 30px rgba(173, 102, 127, 0.16);
}

.faq-empty {
    max-width: 720px;
    padding: 4rem 1.5rem;
    border: 1px solid #eee3e7;
    border-radius: 1rem;
    background: #fff;
    text-align: center;
}

.faq-empty .material-icons {
    color: #c48b9f;
    font-size: 3rem;
}

.faq-empty h2 {
    margin: 0.75rem 0 0.4rem;
    color: #3d3036;
    font-size: 1.3rem;
}

.faq-empty p {
    margin: 0;
    color: #7b6b72;
}

@media (max-width: 640px) {
    .faq-header {
        margin-bottom: 2rem;
    }

    .faq-category {
        margin: 2rem 0;
    }

    .faq-category .faq-category {
        margin-left: 0.35rem;
        padding-left: 0.75rem;
    }

    .faq-question summary,
    .faq-answer {
        padding-left: 1rem;
        padding-right: 1rem;
    }
}