/* ==================================================
    PRIVACY POLICY - CLEAN TYPOGRAPHIC UI
    (MATCHED WITH TERMS OF USE)
================================================== */

:root {
    --pp-content-width: 800px;
    --brand-blue: #133880;
    --pp-text: #334155;
    --pp-heading: #0f172a;
    --pp-accent: #ed1c24;
    --bg-light: #ffffff;
}

/* --- Layout Setup --- */
.privacy-policy-section {
    background-color: var(--bg-light);
    color: var(--pp-text);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    padding: 0;
    margin: 0;
}

/* Wrapper ensures consistent side-padding */
.privacy-policy-wrapper {
    padding: 80px 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* --- Typographic Container (No Box) --- */
.privacy-policy-content {
    width: 100%;
    max-width: var(--pp-content-width);
    line-height: 1.8;
}

/* --- Headings --- */
.privacy-policy-content h1 {
    font-size: clamp(2.5rem, 6vw, 4rem);
    color: var(--pp-heading);
    font-weight: 850;
    letter-spacing: -0.04em;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    text-align: left;
}

.privacy-policy-content h2 {
    font-size: 1.75rem;
    color: var(--pp-heading);
    margin-top: 4rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    padding-top: 2rem;
    border-top: 1px solid #f1f5f9; /* SAME divider as TOU */
}

/* --- Body Text --- */
.privacy-policy-content p {
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
    color: var(--pp-text);
}

/* --- Modern List Styling (Arrow Bullets) --- */
.privacy-policy-content ul {
    margin: 2rem 0;
    padding: 0;
}

.privacy-policy-content li {
    list-style: none;
    padding: 12px 0 12px 30px;
    position: relative;
    border-bottom: 1px solid #f1f5f9;
}

.privacy-policy-content li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--pp-accent);
    font-weight: bold;
}

/* --- Links & Interactive --- */
.privacy-policy-content a {
    color: var(--brand-blue);
    text-decoration: none;
    font-weight: 600;
    box-shadow: inset 0 -2px 0 rgba(19, 56, 128, 0.1);
    transition: all 0.2s ease;
}

.privacy-policy-content a:hover {
    box-shadow: inset 0 -10px 0 rgba(19, 56, 128, 0.05);
    color: var(--pp-accent);
}

/* --- Contact / Address Box --- */
.privacy-policy-content address {
    margin: 3rem 0;
    padding: 2rem;
    background: #f8fafc;
    border-radius: 12px;
    font-style: normal;
    border: 1px solid #e2e8f0;
}

/* --- Final Acknowledgment (Same as TOU) --- */
.privacy-policy-content p:last-of-type {
    margin-top: 5rem;
    font-size: 0.95rem;
    color: var(--brand-blue);
    opacity: 0.6;
    text-align: center;
}

/* =========================================
    MOBILE OPTIMIZATIONS (Consistency Fixes)
========================================= */
@media (max-width: 640px) {
    .privacy-policy-wrapper {
        padding: 60px 20px;
    }

    .privacy-policy-content h1 {
        font-size: 2.2rem;
    }

    .privacy-policy-content h2 {
        font-size: 1.4rem;
        margin-top: 3rem;
    }

    .privacy-policy-content p {
        font-size: 1.05rem;
    }

    /* Safety for small screens */
    address,
    p,
    li,
    a {
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
}
