/* ================================================================ */
/* ==         PRIVACY POLICY PAGE STYLES (Updated)               == */
/* ================================================================ */

/* --- Variable Definitions --- */
:root {
    /* Brand Colors */
    --denim-blue: #1671B0;
    --violet: #6B54A6;

    /* Font Styles */
    --header-font: 'Playfair Display', serif;
    --text-font: 'Georgia', serif;
}

/* --- Main Policy Container --- */
.privacy-policy {
    padding-left: 180px;
    padding-right: 180px;
    padding-top: 30px;
    font-family: var(--text-font);
    /* Base font set to Georgia */
    line-height: 1.6;
    background-color: aliceblue;
}

/* --- Main Title --- */
.privacy-policy .title {
    text-align: center;
    font-family: var(--header-font);
    /* Header Font */
    font-size: 30px;
    font-weight: bold;
    margin-bottom: 25px;
    color: var(--denim-blue);
    /* Denim Blue color */
}

/* --- Section Container --- */
.privacy-policy .policy-section {
    /* Renamed from .section to match your HTML */
    margin-bottom: 20px;
}

/* --- Section Titles --- */
.privacy-policy .section-title {
    font-family: var(--header-font);
    /* Header Font */
    font-size: 25px;
    margin-bottom: 10px;
    font-weight: bold;
    padding-bottom: 5px;
    color: var(--violet);
    /* Violet color */
}

/* --- Section Paragraph Text --- */
.privacy-policy .section-text {
    font-family: var(--text-font);
    /* Text Font */
    font-size: 16px;
    margin-bottom: 10px;
    color: #555;
}

/* --- Highlighted Links --- */
.privacy-policy .highlight {
    color: var(--denim-blue);
    /* Denim Blue color */
    font-weight: 500;
    text-decoration: underline;
    cursor: pointer;
    transition: color 0.2s ease;
}

.privacy-policy .highlight:hover {
    color: var(--violet);
    /* Violet color on hover */
}

/* ================================================================ */
/* ==           FIX: ADDED RESPONSIVE STYLES FOR MOBILE          == */
/* ================================================================ */
@media (max-width: 768px) {
    .privacy-policy {
        /* Reduce side padding on smaller screens */
        padding-left: 20px;
        padding-right: 20px;
    }

    .privacy-policy .title {
        /* Adjust title font size for mobile */
        font-size: 26px;
    }

    .privacy-policy .section-title {
        /* Adjust section title font size for mobile */
        font-size: 20px;
    }

    .privacy-policy .section-text {
        /* Adjust paragraph font size for mobile */
        font-size: 15px;
    }
}