/* ==========================================================
   PRIVACY POLICY PAGE
   Uses variables from service_detail.css (--ink-950, --graphite-800,
   --signal-blue, --border-hairline, etc.)
   ========================================================== */

.privacy-policy-container {
    max-width: 860px;
    margin: 0 auto;
}

.privacy-updated {
    font-family: var(--font-mono, monospace);
    font-size: 0.85rem;
    color: var(--graphite-600, #45566B);
    padding-bottom: 20px;
    margin-bottom: 32px;
    border-bottom: 1px solid var(--border-hairline, #DCE3EC);
}

.privacy-updated strong {
    color: var(--graphite-800, #1B2A3D);
}

/* Numbered section headings get a small rail marker, consistent with
   the sticky-subsection treatment used elsewhere on service pages */
.privacy-policy-container .rich-content h2 {
    position: relative;
    padding-left: 18px;
    margin-top: 2.2em;
}

.privacy-policy-container .rich-content h2:first-child {
    margin-top: 0;
}

.privacy-policy-container .rich-content h2::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.15em;
    bottom: 0.15em;
    width: 3px;
    border-radius: 2px;
    background: linear-gradient(180deg, var(--signal-blue, #2F6FED), var(--trace-cyan, #21D4C8));
}

.privacy-policy-container .rich-content ul {
    margin-bottom: 1.2em;
}

@media (max-width: 600px) {
    .privacy-policy-container .rich-content h2 {
        font-size: 1.2rem;
    }
}