 /* --- PRIVACY POLICY STYLES --- */
    .privacy-section {
        position: relative;
        padding: 140px 5% 100px;
        background: var(--bg-color);
        color: var(--text-main);
        overflow: hidden;
    }

    .privacy-container {
        max-width: 1000px;
        margin: 0 auto;
        position: relative;
        z-index: 2;
    }

    .privacy-header {
        text-align: center;
        margin-bottom: 50px;
    }

    .privacy-main-title {
        font-size: clamp(2.5rem, 6vw, 4rem);
        font-weight: 800;
        margin-bottom: 15px;
        letter-spacing: -1.5px;
    }

    .privacy-subtitle {
        font-size: 1.2rem;
        color: var(--text-muted);
        margin-bottom: 30px;
    }

    .header-divider {
        width: 80px;
        height: 4px;
        background: var(--gradient);
        margin: 0 auto;
        border-radius: 10px;
    }

    /* --- GLASSMORPISM DOCUMENT CARD --- */
    .privacy-glass-card {
        background: var(--glass-bg);
        border: 1px solid var(--card-border);
        border-radius: 35px;
        padding: 60px;
        backdrop-filter: blur(25px);
        box-shadow: 0 40px 80px rgba(0, 0, 0, 0.2);
        position: relative;
    }

    /* Subtle Border Accent */
    .privacy-glass-card::before {
        content: '';
        position: absolute;
        top: 0; left: 50%;
        transform: translateX(-50%);
        width: 200px;
        height: 2px;
        background: var(--gradient);
        border-radius: 0 0 10px 10px;
    }

    /* --- CONTENT TYPOGRAPHY --- */
    .policy-block {
        margin-bottom: 45px;
    }

    .policy-block:last-child {
        margin-bottom: 0;
    }

    .policy-block h2 {
        font-size: 1.6rem;
        font-weight: 700;
        margin-bottom: 20px;
        color: var(--primary-orange);
        letter-spacing: -0.5px;
    }

    .policy-block p {
        font-size: 1.05rem;
        line-height: 1.8;
        color: var(--text-muted);
        margin-bottom: 20px;
    }

    .policy-block strong {
        color: var(--text-main);
    }

    /* --- LIST STYLING --- */
    .premium-list {
        list-style: none;
        padding-left: 10px;
    }

    .premium-list li {
        position: relative;
        padding-left: 25px;
        margin-bottom: 12px;
        color: var(--text-muted);
        font-size: 1rem;
        line-height: 1.6;
    }

    .premium-list li::before {
        content: '→';
        position: absolute;
        left: 0;
        color: var(--primary-orange);
        font-weight: bold;
    }

    /* --- LINK STYLING --- */
    .policy-link {
        color: var(--primary-orange);
        text-decoration: none;
        border-bottom: 1px solid rgba(255, 123, 0, 0.3);
        transition: all 0.3s ease;
    }

    .policy-link:hover {
        border-bottom-color: var(--primary-orange);
        text-shadow: 0 0 10px rgba(255, 123, 0, 0.2);
    }

    /* --- FOOTER NOTE --- */
    .policy-footer-note {
        text-align: center;
        margin-top: 40px;
        color: var(--text-muted);
        font-size: 0.9rem;
        opacity: 0.6;
    }

    /* --- BACKGROUND GLOW --- */
    .privacy-glow {
        position: absolute;
        top: 20%;
        left: 50%;
        transform: translateX(-50%);
        width: 100vw;
        height: 100%;
        background: radial-gradient(circle at center, rgba(255, 123, 0, 0.04), transparent 70%);
        z-index: 1;
        pointer-events: none;
    }

    /* --- RESPONSIVE --- */
    @media (max-width: 768px) {
        .privacy-section {
            padding: 100px 5% 60px;
        }

        .privacy-glass-card {
            padding: 40px 25px;
            border-radius: 25px;
        }

        .policy-block h2 {
            font-size: 1.4rem;
        }

        .policy-block p {
            font-size: 1rem;
        }
    }