/* PAGE HERO */
.page-hero {
    padding: 120px 5vw 60px;
    background: linear-gradient(135deg, var(--brand-light) 0%, var(--white) 60%);
    border-bottom: 1px solid var(--border);
}

.page-hero-inner {
    max-width: 900px;
    margin: 0 auto;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    color: var(--muted);
    margin-bottom: 1.25rem;
}

.breadcrumb a {
    color: var(--brand);
    text-decoration: none;
}

.breadcrumb span {
    color: var(--border);
}

.page-hero h1 {
    font-family: Nunito, sans-serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: var(--dark);
    letter-spacing: -0.03em;
    margin-bottom: 0.75rem;
}

.page-hero p {
    font-size: 1rem;
    color: var(--muted);
    max-width: 560px;
}

.update-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 100px;
    padding: 4px 14px;
    font-size: 0.78rem;
    color: var(--muted);
    margin-top: 1rem;
}

.update-badge strong {
    color: var(--text);
}

/* LAYOUT */
.doc-layout {
    display: grid;
    grid-template-columns: 240px 1fr;
    gap: 3rem;
    max-width: 1100px;
    margin: 0 auto;
    padding: 60px 5vw 100px;
    align-items: start;
}

/* SIDEBAR */
.doc-sidebar {
    position: sticky;
    top: 88px;
}

.sidebar-title {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 1rem;
}

.sidebar-nav {
    list-style: none;
}

.sidebar-nav li {
    margin-bottom: 2px;
}

.sidebar-nav a {
    display: block;
    padding: 6px 12px;
    border-radius: 8px;
    font-size: 1rem;
    color: var(--muted);
    text-decoration: none;
    transition: background .2s, color .2s;
    border-left: 2px solid transparent;
}

.sidebar-nav a:hover {
    background: var(--brand-light);
    color: var(--brand);
    border-left-color: var(--brand);
}

.sidebar-nav a.active {
    background: var(--brand-light);
    color: var(--brand);
    border-left-color: var(--brand);
    font-weight: 600;
}

/* CONTENT */
.doc-section {
    margin-bottom: 3rem;
    scroll-margin-top: 88px;
}

.doc-section:last-child {
    margin-bottom: 0;
}

.policy-intro {
    background: var(--dark);
    color: #fff;
    border-radius: 16px;
    padding: 2rem 2.5rem;
    margin-bottom: 3rem;
}

.policy-intro p {
    font-size: 1rem;
    line-height: 1.8;
    opacity: 0.85;
}

.policy-intro p+p {
    margin-top: 0.75rem;
}

.section-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: var(--brand-light);
    color: var(--brand);
    font-size: 0.8rem;
    font-weight: 800;
    margin-right: 10px;
    flex-shrink: 0;
}

.section-heading {
    display: flex;
    align-items: center;
    margin-bottom: 1.25rem;
    padding-bottom: 0.75rem;
    border-bottom: 1.5px solid var(--border);
}

.section-heading h2 {
    font-family: Nunito, sans-serif;
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--dark);
}

.doc-p {
    font-size: 1rem;
    color: var(--text);
    line-height: 1.85;
    margin-bottom: 0.85rem;
}

.doc-p:last-child {
    margin-bottom: 0;
}

.doc-p strong {
    color: var(--dark);
}

.sub-heading {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--dark);
    margin: 1.25rem 0 0.6rem;
}

.doc-list {
    list-style: none;
    margin: 0.75rem 0 1rem;
}

.doc-list li {
    position: relative;
    padding-left: 1.25rem;
    font-size: 1rem;
    color: var(--text);
    line-height: 1.85;
    margin-bottom: 0.5rem;
}

.doc-list li::before {
    content: '–';
    position: absolute;
    left: 0;
    color: var(--brand);
    font-weight: 700;
}

.doc-list li strong {
    color: var(--dark);
}

.doc-list.alpha {
    counter-reset: alpha;
}

.doc-list.alpha li {
    padding-left: 1.75rem;
}

.doc-list.alpha li::before {
    content: counter(alpha, lower-alpha) ')';
    counter-increment: alpha;
    font-weight: 700;
    color: var(--brand);
}

.highlight-box {
    background: var(--brand-light);
    border-left: 3px solid var(--brand);
    border-radius: 0 10px 10px 0;
    padding: 1rem 1.25rem;
    margin: 1rem 0;
    font-size: 0.88rem;
    color: var(--text);
    line-height: 1.75;
}

.highlight-box strong {
    color: var(--brand);
}

.warning-box {
    background: #FFF8E1;
    border-left: 3px solid #F59E0B;
    border-radius: 0 10px 10px 0;
    padding: 1rem 1.25rem;
    margin: 1rem 0;
    font-size: 0.88rem;
    color: var(--text);
    line-height: 1.75;
}

.warning-box strong {
    color: #92400E;
}

.contact-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 1.5rem;
    margin-top: 1rem;
}

.contact-card h4 {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0.75rem;
}

.contact-row {
    display: flex;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: var(--text);
    margin-bottom: 0.4rem;
    align-items: flex-start;
}

.contact-row span:first-child {
    color: var(--muted);
    min-width: 80px;
    font-size: 0.8rem;
}

@media (max-width: 900px) {
    .doc-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .doc-sidebar {
        position: static;
        display: none;
    }
}

@media (max-width: 600px) {}