/* ================= VARIABLES ================= */
:root {
    --bg-main: #fafafa;
    --bg-alt: #ffffff;
    --bg-dark: #111;

    --text-main: #111;
    --text-muted: #555;
    --text-light: #ffffff;

    --border-soft: #e5e5e5;
    --highlight-bg: #111;
}

/* ================= DARK MODE ================= */
@media (prefers-color-scheme: dark) {
    :root {
        --bg-main: #0b0b0b;
        --bg-alt: #141414;
        --bg-dark: #000;

        --text-main: #f5f5f5;
        --text-muted: #bdbdbd;

        --border-soft: #2a2a2a;
        --highlight-bg: #1c1c1c;
    }
}

/* ================= HERO ================= */
.policy-hero {
    min-height: 55vh;
    background: linear-gradient(
        135deg,
        rgba(0,0,0,0.75),
        rgba(0,0,0,0.4)
    );
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.policy-hero-content {
    color: var(--text-light);
}

.policy-hero h1 {
    font-size: 3rem;
    letter-spacing: 2px;
}

.policy-hero p {
    margin-top: 12px;
    opacity: 0.9;
}

/* ================= CONTENT ================= */
.policy-section {
    background: var(--bg-main);
    padding: 80px 20px;
}

.policy-container {
    max-width: 900px;
    margin: auto;
    background: var(--bg-alt);
    padding: 60px;
    border-radius: 18px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.08);
}

.updated {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 40px;
}

.policy-block {
    margin-bottom: 45px;
}

.policy-block h2 {
    font-size: 1.6rem;
    margin-bottom: 12px;
    color: var(--text-main);
}

.policy-block p {
    line-height: 1.9;
    font-size: 1rem;
    color: var(--text-muted);
}

/* ================= HIGHLIGHT ================= */
.policy-block.highlight {
    background: var(--highlight-bg);
    color: var(--text-light);
    padding: 35px;
    border-radius: 14px;
}

.policy-block.highlight h2,
.policy-block.highlight p {
    color: var(--text-light);
}

/* ================= RESPONSIVE ================= */
@media (max-width: 768px) {
    .policy-container {
        padding: 35px 25px;
    }

    .policy-hero h1 {
        font-size: 2.3rem;
    }
}
