.policy-page {
    padding: var(--section-pad-mobile) 0;
}

@media (min-width: 1024px) {
    .policy-page {
        padding: var(--section-pad-desktop) 0;
    }
}

.policy-layout {
    display: grid;
    gap: 32px;
}

@media (min-width: 1024px) {
    .policy-layout {
        grid-template-columns: 1fr 180px;
        align-items: start;
    }
}

.policy-content {
    max-width: 720px;
}

.policy-content h1 {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 8px;
}

@media (min-width: 1024px) {
    .policy-content h1 {
        font-size: 2.5rem;
    }
}

.policy-meta {
    font-size: 0.8125rem;
    color: var(--text-secondary);
    margin-bottom: 32px;
}

.policy-content h2 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    margin: 32px 0 12px;
    scroll-margin-top: 80px;
}

.policy-content h3 {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 600;
    margin: 24px 0 8px;
}

.policy-content p,
.policy-content li {
    margin-bottom: 12px;
    color: var(--text-primary);
}

.policy-content ul {
    list-style: disc;
    padding-left: 24px;
    margin-bottom: 16px;
}

.policy-content a {
    color: var(--cta);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.policy-toc {
    display: none;
}

@media (min-width: 1024px) {
    .policy-toc {
        display: block;
        position: sticky;
        top: 32px;
    }

    .policy-toc ol {
        display: flex;
        flex-direction: column;
        gap: 8px;
    }

    .policy-toc a {
        font-size: 0.8125rem;
        color: var(--text-secondary);
        text-decoration: none;
    }

    .policy-toc a:hover {
        color: var(--cta);
    }
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.8125rem;
    margin: 16px 0 24px;
}

.cookie-table th,
.cookie-table td {
    border: 1px solid var(--border);
    padding: 10px 12px;
    text-align: left;
    vertical-align: top;
}

.cookie-table th {
    background: var(--surface-muted);
    font-weight: 600;
}

.cookie-table-wrap {
    overflow-x: auto;
}

/* === THANK YOU === */

.thank-you-page {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--section-pad-mobile) 16px;
}

.thank-you-card {
    max-width: 480px;
    width: 100%;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 40px 32px;
    text-align: center;
}

.thank-you-card__icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 24px;
    background: var(--cta-light);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
}

.thank-you-card__icon svg {
    width: 32px;
    height: 32px;
    color: var(--success);
}

.thank-you-card h1 {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.thank-you-card p {
    color: var(--text-secondary);
    margin-bottom: 24px;
}

/* === CONTACT PAGE === */

.contact-page-grid {
    display: grid;
    gap: 24px;
    max-width: 640px;
}

.contact-info-block {
    background: var(--surface-muted);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 24px;
}

.contact-info-block h2 {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.about-highlight {
    background: var(--surface-muted);
    border-left: 4px solid var(--cta);
    border-radius: var(--radius-md);
    padding: 20px 24px;
    margin: 24px 0;
}
