.legal-prose {
    max-width: 42rem;
    margin: 0 auto;
}

.legal-prose h2 {
    font-size: 1.125rem;
    font-weight: 800;
    margin: 2rem 0 0.75rem;
    color: var(--brand-900);
    letter-spacing: -0.01em;
}

.legal-prose h2:first-child {
    margin-top: 0;
}

.legal-prose p,
.legal-prose li {
    font-size: var(--text-body);
    line-height: 1.65;
    color: var(--brand-800);
}

@media (min-width: 768px) {
    .legal-prose p,
    .legal-prose li {
        font-size: var(--text-body-lg);
    }
}

.legal-prose ul {
    margin: 0.75rem 0;
    padding-left: 1.25rem;
}

.legal-prose li {
    margin-bottom: 0.5rem;
}

.legal-prose a {
    color: var(--brand-accent);
    font-weight: 600;
}

.faq-list {
    max-width: 48rem;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.faq-item {
    background: var(--white);
    border: 1px solid var(--brand-200);
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
}

.faq-item summary {
    list-style: none;
    cursor: pointer;
    padding: 1rem 1.125rem;
    font-size: var(--text-body-lg);
    font-weight: 700;
    color: var(--brand-900);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

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

.faq-item summary::after {
    content: '+';
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--brand-accent);
    flex-shrink: 0;
}

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

.faq-item__body {
    padding: 0 1.125rem 1.125rem;
    font-size: var(--text-body);
    line-height: 1.6;
    color: var(--brand-800);
}

.faq-item__body a {
    color: var(--brand-accent);
    font-weight: 600;
}
