/* ===== PRIVACY POLICY PAGE ===== */

.privacy-hero-override {
    height: 380px;
}

.privacy-hero-sub {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1rem;
    margin: 10px 0 0;
    max-width: 480px;
}

/* ===== LAYOUT ===== */

.privacy-layout {
    display: grid;
    grid-template-columns: 220px 1fr;
    max-width: 1020px;
    margin: 56px auto 80px auto;
    padding: 0 24px;
    gap: 56px;
    align-items: start;
}

/* ===== TABLE OF CONTENTS ===== */

.privacy-toc {
    position: sticky;
    top: 100px;
}

.toc-heading {
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #012a9e;
    margin: 0 0 12px 0;
}

.privacy-toc nav {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.privacy-toc nav a {
    font-size: 0.88rem;
    color: #555;
    text-decoration: none;
    padding: 6px 10px;
    border-radius: 6px;
    transition: background 0.15s, color 0.15s;
    line-height: 1.4;
}

.privacy-toc nav a:hover {
    background: #eef1fb;
    color: #012a9e;
}

/* ===== MAIN CONTENT ===== */

.privacy-content {
    min-width: 0;
}

.last-updated {
    font-size: 0.82rem;
    color: #aaa;
    margin-bottom: 40px;
    letter-spacing: 0.3px;
}

.privacy-content section {
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid #eef0f4;
}

.privacy-content section:last-of-type {
    border-bottom: none;
}

.privacy-content h2 {
    font-size: 1.15rem;
    font-weight: 800;
    color: #012a9e;
    margin: 0 0 14px 0;
    letter-spacing: 0.3px;
}

.privacy-content p {
    color: #444;
    line-height: 1.85;
    font-size: 0.97rem;
    margin-bottom: 12px;
}

.privacy-content ul {
    color: #444;
    line-height: 1.85;
    font-size: 0.97rem;
    padding-left: 20px;
    margin-bottom: 12px;
}

.privacy-content ul li {
    margin-bottom: 5px;
}

.privacy-content a {
    color: #012a9e;
    font-weight: 600;
    text-decoration: none;
}

.privacy-content a:hover { text-decoration: underline; }

/* ===== CONTACT BOX ===== */

.contact-box {
    background: linear-gradient(135deg, #012a9e 0%, #0142c8 100%);
    border-radius: 14px;
    padding: 32px;
    margin-top: 16px;
    color: white;
}

.contact-box h3 {
    font-size: 1.2rem;
    font-weight: 800;
    margin: 0 0 8px 0;
    color: white;
}

.contact-box p {
    color: rgba(255,255,255,0.82);
    font-size: 0.95rem;
    margin: 0 0 20px 0;
}

.contact-box-links {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.contact-box-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: white;
    color: #012a9e;
    border-radius: 30px;
    font-weight: 700;
    font-size: 0.9rem;
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s;
}

.contact-box-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    text-decoration: none;
}

/* ===== RESPONSIVE ===== */

@media (max-width: 768px) {
    .privacy-layout { grid-template-columns: 1fr; gap: 32px; }
    .privacy-toc { position: static; display: none; }
    .privacy-hero-override { height: 280px; }
}
