
        
        :root {
            --primary-red: #dc2626;
            --primary-red-light: #ef4444;
            --primary-red-soft: #fee2e2;
            --primary-red-muted: #fecaca;
            --primary-red-dark: #991b1b;
            --primary-red-deep: #7f1d1d;
            --primary-black: #000000;
            --primary-black-light: #111827;
            --primary-white: #ffffff;
            --primary-white-off: #fafafa;
            --primary-white-warm: #fffbfb;
            --dark-gray: #0f172a;
            --medium-gray: #334155;
            --light-gray: #e2e8f0;
            --light-gray-warm: #f1f5f9;
            
            --gradient-primary: linear-gradient(145deg, #dc2626 0%, #b91c1c 50%, #991b1b 100%);
            --gradient-primary-soft: linear-gradient(145deg, rgba(220,38,38,0.95), rgba(153,27,27,0.98));
            --gradient-legal: linear-gradient(145deg, #ffffff, #f8fafc);
            --gradient-trust: linear-gradient(145deg, #fff1f1, #ffffff);
            --gradient-dark: linear-gradient(145deg, #0f172a 0%, #020617 100%);
            --gradient-accent: linear-gradient(145deg, rgba(220,38,38,0.06), rgba(153,27,27,0.02));
            
            --shadow-sm: 0 10px 30px -10px rgba(0,0,0,0.03);
            --shadow-md: 0 20px 40px -15px rgba(220,38,38,0.06);
            --shadow-lg: 0 30px 60px -15px rgba(220,38,38,0.1);
            --shadow-xl: 0 40px 80px -15px rgba(220,38,38,0.12);
            --shadow-inner: inset 0 2px 4px 0 rgba(0,0,0,0.02);
            --glass-shadow: 0 8px 32px rgba(0,0,0,0.05);
            
            --glass-bg: rgba(0,0,0,0.85);
            --glass-border: rgba(255,255,255,0.1);
            --glass-light: rgba(255,255,255,0.9);
            
            --smooth-transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            --bounce-transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
            --legal-transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
            scroll-padding-top: 80px;
        }

        body {
            font-family: 'Inter', 'DM Sans', sans-serif;
            color: var(--dark-gray);
            overflow-x: hidden;
            background: var(--primary-white-warm);
            width: 100%;
            position: relative;
            line-height: 1.7;
        }

        img {
            max-width: 100%;
            height: auto;
            display: block;
        }

        .container {
            width: 100%;
            max-width: 1500px;
            margin: 0 auto;
            padding-left: 30px;
            padding-right: 30px;
        }
        
        /* Animation Classes */
        .animate-on-scroll {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.8s ease, transform 0.8s ease;
        }

        .animate-on-scroll.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .animation-delay-100 { transition-delay: 0.1s; }
        .animation-delay-200 { transition-delay: 0.2s; }
        .animation-delay-300 { transition-delay: 0.3s; }
        .animation-delay-400 { transition-delay: 0.4s; }
        .animation-delay-500 { transition-delay: 0.5s; }

        /* ===== PRIVACY POLICY HERO - LEGAL DESIGN ===== */
        .privacy-hero {
            background: linear-gradient(145deg, #ffffff 0%, #f8fafc 100%);
            padding: 140px 0 80px;
            position: relative;
            overflow: hidden;
            width: 100%;
            border-bottom: 1px solid rgba(220,38,38,0.06);
        }

        .privacy-hero::before {
            content: '';
            position: absolute;
            top: -30%;
            right: -10%;
            width: 800px;
            height: 800px;
            background: radial-gradient(circle, rgba(220,38,38,0.02) 0%, transparent 70%);
            border-radius: 50%;
            z-index: 0;
        }

        .privacy-hero::after {
            content: '';
            position: absolute;
            bottom: -30%;
            left: -10%;
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(0,0,0,0.01) 0%, transparent 70%);
            border-radius: 50%;
            z-index: 0;
        }

        .privacy-badge {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            background: rgba(220,38,38,0.06);
            padding: 12px 28px;
            border-radius: 100px;
            margin-bottom: 25px;
            border: 1px solid rgba(220,38,38,0.1);
            backdrop-filter: blur(10px);
        }

        .privacy-badge span {
            color: var(--primary-red-dark);
            font-weight: 700;
            font-size: 14px;
            letter-spacing: 2px;
            text-transform: uppercase;
        }

        .privacy-badge i {
            color: var(--primary-red);
            animation: pulse 2s infinite;
        }

        .privacy-title-main {
            font-family: 'Space Grotesk', 'Inter', sans-serif;
            font-size: 4rem;
            font-weight: 700;
            color: var(--dark-gray);
            margin-bottom: 25px;
            line-height: 1.1;
            letter-spacing: -1px;
        }

        .privacy-title-main span {
            background: var(--gradient-primary);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            position: relative;
            display: inline-block;
        }

        .privacy-description {
            font-size: 1.25rem;
            color: var(--medium-gray);
            max-width: 800px;
            margin: 0 auto;
            line-height: 1.7;
            font-weight: 400;
        }

        /* ===== PRIVACY CARD CONTAINER ===== */
        .privacy-card {
            background: white;
            border-radius: 32px;
            padding: 60px;
            box-shadow: var(--shadow-xl);
            margin: 60px auto 80px;
            border: 1px solid rgba(220,38,38,0.05);
            position: relative;
            overflow: hidden;
        }

        .privacy-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 8px;
            background: var(--gradient-primary);
            z-index: 2;
        }

        /* ===== PRIVACY CONTENT STYLES ===== */
        .privacy-content {
            font-family: 'Inter', sans-serif;
            color: var(--medium-gray);
            max-width: 900px;
            margin: 0 auto;
        }

        .privacy-content h2 {
            font-family: 'Space Grotesk', 'Inter', sans-serif;
            font-size: 2.2rem;
            font-weight: 700;
            color: var(--dark-gray);
            margin-top: 50px;
            margin-bottom: 25px;
            padding-bottom: 15px;
            border-bottom: 2px solid rgba(220,38,38,0.1);
            position: relative;
        }

        .privacy-content h2:first-of-type {
            margin-top: 0;
        }

        .privacy-content h2::after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 80px;
            height: 2px;
            background: var(--gradient-primary);
            border-radius: 2px;
        }

        .privacy-content h3 {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--dark-gray);
            margin-top: 40px;
            margin-bottom: 20px;
        }

        .privacy-content h4 {
            font-size: 1.2rem;
            font-weight: 700;
            color: var(--dark-gray);
            margin-top: 30px;
            margin-bottom: 15px;
        }

        .privacy-content p {
            font-size: 1.1rem;
            line-height: 1.8;
            color: var(--medium-gray);
            margin-bottom: 25px;
        }

        .privacy-content strong {
            color: var(--primary-red-dark);
            font-weight: 700;
        }

        .privacy-content a {
            color: var(--primary-red);
            text-decoration: none;
            font-weight: 600;
            border-bottom: 1px solid transparent;
            transition: var(--legal-transition);
        }

        .privacy-content a:hover {
            border-bottom-color: var(--primary-red);
            color: var(--primary-red-dark);
        }

        .privacy-content ul, 
        .privacy-content ol {
            margin: 25px 0;
            padding-left: 30px;
        }

        .privacy-content li {
            font-size: 1.1rem;
            line-height: 1.8;
            color: var(--medium-gray);
            margin-bottom: 12px;
            position: relative;
            padding-left: 10px;
        }

        .privacy-content li::marker {
            color: var(--primary-red);
            font-weight: 700;
        }

        .privacy-content blockquote {
            background: linear-gradient(145deg, #f8fafc, #ffffff);
            border-left: 6px solid var(--primary-red);
            padding: 30px;
            border-radius: 16px;
            margin: 40px 0;
            font-style: italic;
            color: var(--dark-gray);
            box-shadow: var(--shadow-sm);
        }

        .privacy-content hr {
            margin: 50px 0;
            border: 0;
            height: 1px;
            background: linear-gradient(90deg, transparent, rgba(220,38,38,0.2), transparent);
        }

        /* ===== SECTION CARD STYLES ===== */
        .privacy-section-card {
            background: linear-gradient(145deg, #ffffff, #fafafa);
            border-radius: 24px;
            padding: 40px;
            margin-bottom: 40px;
            border: 1px solid rgba(220,38,38,0.05);
            transition: var(--smooth-transition);
        }

        .privacy-section-card:hover {
            box-shadow: var(--shadow-lg);
            border-color: rgba(220,38,38,0.1);
            transform: translateY(-3px);
        }

        .privacy-section-card h2 {
            margin-top: 0 !important;
            border-bottom: none !important;
            padding-bottom: 0 !important;
        }

        .privacy-section-card h2::after {
            bottom: -10px !important;
        }

        /* ===== DATA USAGE HIGHLIGHT ===== */
        .data-highlight {
            background: var(--gradient-primary);
            border-radius: 20px;
            padding: 40px;
            margin: 50px 0;
            color: white;
            position: relative;
            overflow: hidden;
        }

        .data-highlight::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -20%;
            width: 200px;
            height: 200px;
            background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
            border-radius: 50%;
        }

        .data-highlight p {
            color: white;
            margin-bottom: 0;
            font-size: 1.2rem;
            line-height: 1.7;
        }

        .data-highlight strong {
            color: white;
            font-weight: 800;
        }

        /* ===== TABLE OF CONTENTS ===== */
        .privacy-toc {
            background: linear-gradient(145deg, #f8fafc, #ffffff);
            border-radius: 24px;
            padding: 40px;
            margin-bottom: 50px;
            border: 1px solid rgba(220,38,38,0.05);
        }

        .privacy-toc h3 {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--dark-gray);
            margin-bottom: 25px;
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .privacy-toc h3 i {
            color: var(--primary-red);
            font-size: 1.8rem;
        }

        .privacy-toc-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
        }

        .privacy-toc-item {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 12px 20px;
            background: white;
            border-radius: 12px;
            border: 1px solid rgba(220,38,38,0.05);
            transition: var(--legal-transition);
            color: var(--medium-gray);
            text-decoration: none;
            font-weight: 500;
        }

        .privacy-toc-item:hover {
            background: var(--gradient-primary);
            color: white;
            transform: translateX(5px);
            border-color: transparent;
        }

        .privacy-toc-item:hover i {
            color: white;
        }

        .privacy-toc-item i {
            color: var(--primary-red);
            font-size: 1rem;
            transition: var(--legal-transition);
        }

        /* ===== LAST UPDATED BADGE ===== */
        .last-updated {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: rgba(220,38,38,0.04);
            padding: 12px 24px;
            border-radius: 50px;
            margin-bottom: 30px;
            color: var(--medium-gray);
            font-size: 0.95rem;
            border: 1px solid rgba(220,38,38,0.1);
        }

        .last-updated i {
            color: var(--primary-red);
        }

        .last-updated strong {
            color: var(--primary-red-dark);
        }

        @keyframes pulse {
            0%, 100% { opacity: 1; transform: scale(1); }
            50% { opacity: 0.7; transform: scale(1.1); }
        }

        @keyframes rotate {
            from { transform: rotate(0deg); }
            to { transform: rotate(360deg); }
        }

        /* ===== RESPONSIVE BREAKPOINTS ===== */
        @media (max-width: 1400px) {
            .privacy-title-main { font-size: 3.5rem; }
        }

        @media (max-width: 1200px) {
            .privacy-title-main { font-size: 3.2rem; }
            .privacy-card { padding: 50px; }
            .privacy-content h2 { font-size: 2rem; }
            .privacy-toc-grid { 
                grid-template-columns: 1fr; 
            }
        }

        @media (max-width: 1024px) {
            .privacy-hero { padding: 120px 0 60px; }
            .privacy-card { padding: 40px; }
            .privacy-content h2 { font-size: 1.8rem; }
        }

        @media (max-width: 768px) {
            .container {
                padding-left: 20px;
                padding-right: 20px;
            }
            
            .privacy-title-main { 
                font-size: 2.5rem; 
            }
            
            .privacy-description { 
                font-size: 1.1rem; 
            }
            
            .privacy-card { 
                padding: 35px 25px; 
                border-radius: 24px;
            }
            
            .privacy-content h2 { 
                font-size: 1.6rem; 
                margin-top: 40px;
            }
            
            .privacy-content p { 
                font-size: 1rem; 
            }
            
            .privacy-content li { 
                font-size: 1rem; 
            }
            
            .privacy-section-card { 
                padding: 30px 25px; 
            }
            
            .data-highlight { 
                padding: 30px 25px; 
            }
            
            .privacy-toc { 
                padding: 30px 25px; 
            }
        }

        @media (max-width: 576px) {
            .privacy-title-main { 
                font-size: 2rem; 
            }
            
            .privacy-badge { 
                padding: 10px 20px; 
                font-size: 12px; 
            }
            
            .privacy-card { 
                padding: 30px 20px; 
                margin: 40px auto 60px;
            }
            
            .privacy-content h2 { 
                font-size: 1.4rem; 
                margin-top: 35px;
            }
            
            .privacy-content h3 { 
                font-size: 1.2rem; 
            }
            
            .last-updated { 
                flex-wrap: wrap; 
                text-align: center; 
                justify-content: center;
            }
        }

        @media (max-width: 400px) {
            .privacy-title-main { 
                font-size: 1.8rem; 
            }
            
            .privacy-card { 
                padding: 25px 18px; 
            }
            
            .privacy-content h2 { 
                font-size: 1.3rem; 
            }
        }

