/* ═══════════════════════════════════
   ShiftMate – Privacy Policy Styles
   ═══════════════════════════════════ */

/* ── Privacy policy ───────────────── */
.privacy-content {
    max-width: 780px;
}
.privacy-content h2 {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 1.4rem;
    margin: 48px 0 16px;
    padding-top: 24px;
    border-top: 1px solid var(--border);
}
.privacy-content h2:first-of-type {
    margin-top: 0;
    padding-top: 0;
    border-top: none;
}
.privacy-content p,
.privacy-content li {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.85;
    margin-bottom: 14px;
}
.privacy-content ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 14px;
}
.privacy-content li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 6px;
}
.privacy-content li::before {
    content: '';
    position: absolute;
    left: 0; top: 12px;
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--neon-blue);
    opacity: 0.6;
}
.privacy-updated {
    display: inline-block;
    font-family: 'Outfit', sans-serif;
    font-weight: 500;
    font-size: 0.82rem;
    color: var(--text-muted);
    background: var(--bg-surface);
    border: 1px solid var(--border);
    border-radius: 999px;
    padding: 6px 16px;
    margin-bottom: 36px;
}