/* --- ROOT VARIABLES (MATCHING WEBSITE THEME) --- */
:root {
    --text: #000B58;
    --primary-dark: #0D1B2A;
    --header: #1B263B;
    --navlink: #e6f3ff;
    --teal: #006562;
    --teal-glow: #00656280;
    --yellow: #FDEB9E;
    --logo: #9daec2;
    --white: #ffffff;
    --headind2: "Chelsea Market", system-ui;
    --font-main: "DM Serif Text", serif;
    --para: "Funnel Sans", sans-serif;
}

/* --- GLOBAL STYLES --- */
body {
    width: 100%;
    background-color: var(--white);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
}

/* --- PRIVACY HERO SECTION --- */
.privacy-hero {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--header) 100%);
    padding: 6rem 5%;
    text-align: center;
    margin-top: 60px;
    border-bottom: 4px solid var(--teal);
    position: relative;
    overflow: hidden;
}



.privacy-hero-content {
    position: relative;
    z-index: 1;
}

.privacy-hero h1 {
    color: var(--white);
    font-size: clamp(2rem, 5vw, 3.5rem);
    margin-bottom: 0.5rem;
    font-family: "Zalando Sans Expanded", sans-serif;
    font-weight: 700;
    letter-spacing: 2px;
}

.privacy-hero .updated {
    color: var(--yellow);
    font-size: 1.1rem;
    letter-spacing: 1px;
    font-family: "Google Sans Code", monospace;
}

/* --- MAIN CONTAINER --- */
.privacy-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.privacy-content {
    background-color: var(--white);
}

.privacy-content h2 {
    font-size: 1.8rem;
    color: var(--primary-dark);
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    font-family: "Zalando Sans Expanded", sans-serif;
    font-weight: 700;
    position: relative;
    padding-bottom: 0.5rem;
    border-bottom: 3px solid var(--teal);
}

.privacy-content h2:first-of-type {
    margin-top: 0;
}

.privacy-content > p {
    font-size: 1.05rem;
    color: var(--text);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-family: "Funnel Sans", sans-serif;
}

.privacy-content a {
    color: var(--teal);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.privacy-content a:hover {
    color: var(--primary-dark);
    text-decoration: underline;
    letter-spacing: 0.5px;
}

.privacy-content ul {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.privacy-content ul li {
    margin: 1rem 0;
    padding-left: 2rem;
    position: relative;
    font-size: 1.05rem;
    color: var(--text);
    line-height: 1.8;
    font-family: "Funnel Sans", sans-serif;
}

.privacy-content ul li::before {
    content: "▸";
    position: absolute;
    left: 0;
    color: var(--teal);
    font-weight: bold;
    font-size: 1.3rem;
}

/* --- RESPONSIVE DESIGN --- */
@media (max-width: 768px) {
    .privacy-hero {
        padding: 4rem 3%;
        margin-top: 60px;
    }

    .privacy-hero h1 {
        font-size: clamp(1.5rem, 4vw, 2.5rem);
    }

    .privacy-container {
        padding: 3rem 1.5rem;
    }

    .privacy-content h2 {
        font-size: 1.5rem;
        margin-top: 2rem;
    }

    .privacy-content > p {
        font-size: 0.95rem;
    }

    .privacy-content ul li {
        padding-left: 1.5rem;
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .privacy-hero {
        padding: 3rem 2%;
        margin-top: 60px;
    }

    .privacy-hero h1 {
        font-size: 1.8rem;
    }

    .privacy-container {
        padding: 2rem 1rem;
    }

    .privacy-content h2 {
        font-size: 1.3rem;
        margin-top: 1.5rem;
    }

    .privacy-content > p {
        font-size: 0.9rem;
    }

    .privacy-content ul li {
        padding-left: 1.2rem;
        font-size: 0.9rem;
        margin: 0.8rem 0;
    }
}

        a {
            color: #38bdf8;
            text-decoration: none;
        }

        a:hover {
            text-decoration: underline;
        }

        @media (max-width: 768px) {
            .card {
                padding: 25px;
            }

            h1 {
                font-size: 28px;
            }
        }