/* Externalized from privacy-policy.html — CSP's style-src 'self' does not
   allow inline <style> blocks, so this must be a linked stylesheet. This is a
   standalone static page (no Vue build step), so it keeps its own small
   token set here rather than importing the app's src/styles/tokens.css —
   same "Quiet Utility" values, kept in sync by hand since this file rarely
   changes. */
:root {
    --paper: #f8f6f2;
    --surface: #ffffff;
    --ink: #221f19;
    --ink-soft: #55503f;
    --ink-faint: #8a8370;
    --line: #e4e0d5;
    --line-strong: #cec8b7;
    --accent: #278a76;
    --accent-strong: #1c6a5a;
    --accent-soft: #e2f2ee;
    --accent-ink: #f7faf8;
}

@media (prefers-color-scheme: dark) {
    :root {
        --paper: #1c1b16;
        --surface: #242219;
        --ink: #ece8de;
        --ink-soft: #b8b1a0;
        --ink-faint: #8e876f;
        --line: #38352a;
        --line-strong: #47432f;
        --accent: #7fd6bd;
        --accent-strong: #9fe3cd;
        --accent-soft: #26382f;
        --accent-ink: #12211b;
    }
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    background: var(--paper);
    min-height: 100vh;
    color: var(--ink);
    margin: 0;
    padding: 20px;
    line-height: 1.6;
}

.container {
    max-width: 800px;
    margin: 40px auto;
    background: var(--surface);
    border-radius: 16px;
    box-shadow: 0 2px 4px rgba(30, 25, 15, 0.04), 0 12px 24px -14px rgba(30, 25, 15, 0.18);
    padding: 40px;
    border: 1px solid var(--line);
}

h1 {
    font-size: 32px;
    font-weight: 700;
    text-align: center;
    color: var(--ink);
    margin-bottom: 40px;
}

h1 .highlight {
    color: var(--accent-strong);
}

h2 {
    font-size: 24px;
    font-weight: 600;
    color: var(--ink);
    margin-top: 40px;
    margin-bottom: 20px;
    border-bottom: 1px solid var(--line);
    padding-bottom: 8px;
}

h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--ink);
    margin-top: 30px;
    margin-bottom: 15px;
}

p {
    margin-bottom: 16px;
    text-align: justify;
    color: var(--ink-soft);
}

ul {
    margin-bottom: 16px;
    padding-left: 20px;
    color: var(--ink-soft);
}

li {
    margin-bottom: 8px;
}

a {
    color: var(--accent-strong);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: color 0.15s ease-out, border-color 0.15s ease-out;
}

a:hover {
    color: var(--accent-strong);
    border-bottom-color: var(--accent-strong);
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--accent);
    color: var(--accent-ink);
    padding: 12px 20px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    margin-bottom: 30px;
    transition: background 0.15s ease-out;
    border-bottom: none;
}

.back-link:hover {
    background: var(--accent-strong);
    color: var(--accent-ink);
}

.info-box {
    background: var(--accent-soft);
    border: 1px solid var(--accent-soft);
    border-radius: 10px;
    padding: 20px;
    margin: 20px 0;
}

.info-box h4 {
    margin-top: 0;
    color: var(--accent-strong);
    font-weight: 600;
}

.contact-info {
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 10px;
    padding: 20px;
    margin: 20px 0;
}

.language-selector {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 100;
    display: flex;
    gap: 4px;
    background: var(--surface);
    padding: 4px;
    border-radius: 10px;
    box-shadow: 0 1px 3px rgba(30, 25, 15, 0.08);
    border: 1px solid var(--line);
}

.language-btn {
    background: transparent;
    border: 1px solid transparent;
    border-radius: 6px;
    padding: 6px 10px;
    font-size: 13px;
    cursor: pointer;
    transition: color 0.15s ease-out, background 0.15s ease-out;
    color: var(--ink-faint);
    font-weight: 600;
}

.language-btn:hover {
    background: var(--paper);
    color: var(--ink);
}

.language-btn.active {
    background: var(--accent-soft);
    color: var(--accent-strong);
}

.content-section {
    display: none;
}

.content-section.active {
    display: block;
}
