   :root {
        /* Enhanced Color Palette with Better Contrast */
        --white: #ffffff;
        --black: #000000;

        /* Brand Primary (Teal) - Enhanced for better contrast */
        --primary: #1E8A88;
        --primary-light: #2CA6A4;
        --primary-lighter: #4FC1BF;
        --primary-dark: #176E6C;

        /* Brand Secondary (Green) - Enhanced */
        --secondary: #6AAD3B;
        --secondary-light: #7BC043;
        --secondary-lighter: #9EDB6B;
        --secondary-dark: #5B9432;

        /* Accent Colors */
        --accent-navy: #1F2D3D;
        --accent-navy-light: #2A3B4F;
        --accent-navy-dark: #141E2B;

        /* Neutral Grays - Improved contrast */
        --light-gray: #F8FAFC;
        --medium-gray: #E2E8F0;
        --dark-gray: #4A5568;

        /* Text Colors - AAA compliant contrast */
        --text-primary: #1A202C;
        --text-secondary: #4A5568;
        --text-light: #718096;

        /* Gradients */
        --primary-gradient: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-light) 100%);
        --secondary-gradient: linear-gradient(135deg, var(--primary-lighter) 0%, var(--primary-light) 100%);
        --accent-gradient: linear-gradient(135deg, var(--accent-navy-dark) 0%, var(--accent-navy-light) 100%);
        --logo-gradient: linear-gradient(135deg, var(--primary) 0%, var(--primary) 50%, var(--accent-navy) 100%);

        /* Glow Effects */
        --primary-glow: 0 0 25px rgba(44, 166, 164, 0.5);
        --secondary-glow: 0 0 25px rgba(123, 192, 67, 0.5);
        --accent-glow: 0 0 25px rgba(31, 45, 61, 0.5);

        /* Shadows */
        --shadow-light: 0 4px 20px rgba(0, 0, 0, 0.08);
        --shadow-medium: 0 8px 30px rgba(0, 0, 0, 0.12);
        --shadow-heavy: 0 15px 40px rgba(0, 0, 0, 0.2);
    }

    /* Privacy Header */
    .privacy-header {
        background: var(--primary-gradient);
        color: white;
        padding: 4rem 0;
        text-align: center;
        margin-bottom: 3rem;
        position: relative;
        overflow: hidden;
    }

    .privacy-header::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23ffffff' fill-opacity='0.1' fill-rule='evenodd'/%3E%3C/svg%3E");
        animation: float 20s infinite linear;
    }

    .privacy-header-content {
        position: relative;
        z-index: 2;
    }

    .privacy-header h1 {
        font-size: 3rem;
        font-weight: 800;
        margin-bottom: 1rem;
        text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    }

    .privacy-header .lead {
        font-size: 1.2rem;
        opacity: 0.95;
        font-weight: 300;
    }

    .last-updated {
        background: linear-gradient(135deg, var(--secondary-light) 0%, var(--secondary) 100%);
        color: var(--white);
        padding: 0.5rem 1.5rem;
        border-radius: 25px;
        font-weight: 600;
        display: inline-block;
        margin-top: 1rem;
    }

    @keyframes float {
        0% { transform: translateX(0) translateY(0); }
        100% { transform: translateX(-100px) translateY(-100px); }
    }

    /* Main Policy Card */
    .policy-card {
        border: none;
        border-radius: 20px;
        box-shadow: var(--shadow-heavy);
        overflow: hidden;
        margin-bottom: 3rem;
        background: var(--white);
    }

    .policy-card-header {
        background: linear-gradient(135deg, var(--secondary-light) 0%, var(--secondary) 100%);
        padding: 2.5rem;
        text-align: center;
        border: none;
    }

    .policy-card-header h2 {
        color: var(--white);
        font-weight: 800;
        margin: 0;
        font-size: 2rem;
    }

    .policy-icon {
        font-size: 3rem;
        margin-bottom: 1rem;
        display: block;
        color: var(--white);
    }

    .policy-card-body {
        padding: 3rem;
        background: var(--light-gray);
    }

    /* Alert Styling */
    .policy-alert {
        background: rgba(30, 138, 136, 0.1);
        border: none;
        border-radius: 12px;
        border-left: 4px solid var(--primary);
        padding: 1.5rem;
        margin-bottom: 2rem;
    }

    .policy-alert i {
        color: var(--primary);
        font-size: 1.2rem;
    }

    /* Policy Sections */
    .policy-section {
        margin-bottom: 3rem;
        padding-bottom: 2rem;
        border-bottom: 1px solid var(--medium-gray);
        background: var(--white);
        border-radius: 12px;
        padding: 2rem;
        box-shadow: var(--shadow-light);
    }

    .policy-section:last-of-type {
        border-bottom: none;
        margin-bottom: 0;
        padding-bottom: 2rem;
    }

    .section-icon {
        width: 60px;
        height: 60px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-right: 1.5rem;
        flex-shrink: 0;
    }

    .section-icon.primary { background: rgba(30, 138, 136, 0.15); color: var(--primary-dark); }
    .section-icon.success { background: rgba(106, 173, 59, 0.15); color: var(--secondary-dark); }
    .section-icon.warning { background: rgba(255, 193, 7, 0.15); color: #ffc107; }
    .section-icon.info { background: rgba(23, 110, 108, 0.15); color: var(--primary-dark); }
    .section-icon.danger { background: rgba(220, 53, 69, 0.15); color: #dc3545; }
    .section-icon.secondary { background: rgba(31, 45, 61, 0.15); color: var(--accent-navy); }

    .section-icon i {
        font-size: 1.5rem;
    }

    .section-header {
        display: flex;
        align-items: center;
        margin-bottom: 1.5rem;
    }

    .section-title {
        color: var(--primary-dark);
        font-weight: 700;
        font-size: 1.4rem;
        margin: 0;
    }

    .section-content {
        margin-left: 75px;
    }

    .section-content ul {
        padding-left: 1.5rem;
        margin-bottom: 1rem;
    }

    .section-content li {
        margin-bottom: 0.8rem;
        line-height: 1.6;
        color: var(--text-secondary);
    }

    .section-content p {
        color: var(--text-secondary);
        line-height: 1.7;
        margin-bottom: 1rem;
    }

    .highlight-text {
        background: var(--secondary-gradient);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        font-weight: 700;
    }

    /* Contact Section */
    .contact-section {
        background: linear-gradient(135deg, var(--white) 0%, var(--light-gray) 100%);
        border-radius: 15px;
        padding: 2.5rem;
        margin-top: 2rem;
        border-left: 4px solid var(--secondary);
        box-shadow: var(--shadow-medium);
    }

    .contact-email {
        color: var(--primary);
        font-weight: 600;
        text-decoration: none;
        transition: all 0.3s ease;
    }

    .contact-email:hover {
        color: var(--secondary);
        text-decoration: underline;
    }

    /* Back Button */
    .back-btn {
        background: var(--primary-gradient);
        color: white;
        border: none;
        padding: 0.8rem 2rem;
        border-radius: 10px;
        font-weight: 600;
        transition: all 0.3s ease;
        text-decoration: none;
        display: inline-flex;
        align-items: center;
        box-shadow: var(--shadow-light);
    }

    .back-btn:hover {
        background: var(--accent-gradient);
        color: white;
        transform: translateY(-2px);
        box-shadow: var(--shadow-medium);
    }

    /* Responsive Design */
    @media (max-width: 768px) {
        .privacy-header {
            padding: 3rem 0;
        }

        .privacy-header h1 {
            font-size: 2.2rem;
        }

        .policy-card-body {
            padding: 2rem;
        }

        .section-header {
            flex-direction: column;
            text-align: center;
        }

        .section-icon {
            margin-right: 0;
            margin-bottom: 1rem;
        }

        .section-content {
            margin-left: 0;
            text-align: left;
        }

        .policy-card-header {
            padding: 2rem 1.5rem;
        }

        .policy-card-header h2 {
            font-size: 1.7rem;
        }
    }

    @media (max-width: 576px) {
        .privacy-header {
            padding: 2.5rem 0;
        }

        .privacy-header h1 {
            font-size: 1.8rem;
        }

        .policy-card-body {
            padding: 1.5rem;
        }

        .contact-section {
            padding: 2rem 1.5rem;
        }
    }