:root {
            --primary: #1a2a4a;
            --secondary: #2c3e50;
            --accent: #3498db;
            --accent-light: #5dade2;
            --accent-dark: #2874a6;
            --light: #ecf0f1;
            --dark: #2c3e50;
            --success: #2ecc71;
            --warning: #f39c12;
            --danger: #e74c3c;
            --gradient-start: #1a2a4a;
            --gradient-end: #3498db;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Poppins', sans-serif;
        }
        
        body {
            background: linear-gradient(135deg, #0c1427, #1c2e4a);
            color: var(--light);
            line-height: 1.6;
            min-height: 100vh;
            overflow-x: hidden;
            position: relative;
        }
        
        /* 3D Background Canvas */
        #particles-3d {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -1;
        }
        
        /* Header */
        .header {
            text-align: center;
            padding: 4rem 2rem 3rem;
            position: relative;
            overflow: hidden;
        }
        
        .header::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle at center, rgba(52, 152, 219, 0.15), transparent 70%);
            z-index: -1;
        }
        
        .header h1 {
            font-family: 'Montserrat', sans-serif;
            font-size: 3.5rem;
            margin-bottom: 1rem;
            background: linear-gradient(to right, var(--accent-light), var(--light));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            text-shadow: 0 5px 15px rgba(52, 152, 219, 0.3);
            letter-spacing: 1px;
        }
        
        .header p {
            font-size: 1.2rem;
            max-width: 700px;
            margin: 0 auto;
            color: #c8d6e5;
        }
        
        .last-updated {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            color: white;
            padding: 0.8rem 1.8rem;
            border-radius: 50px;
            display: inline-block;
            margin-top: 1.5rem;
            font-size: 1rem;
            border: 1px solid rgba(255, 255, 255, 0.2);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        }
        
        /* Main Content */
        .privacy-container {
            max-width: 1100px;
            margin: 0 auto;
            padding: 0 2rem 4rem;
            display: grid;
            gap: 2.5rem;
        }
        
        .section {
            background: rgba(26, 42, 74, 0.7);
            backdrop-filter: blur(10px);
            border-radius: 20px;
            padding: 2.5rem;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
            border: 1px solid rgba(52, 152, 219, 0.3);
            transform: perspective(1000px) rotateY(0deg) rotateX(0deg);
            transition: transform 0.4s ease, box-shadow 0.4s ease;
            position: relative;
            overflow: hidden;
        }
        
        .section:hover {
            transform: perspective(1000px) rotateY(1deg) rotateX(1deg) translateY(-5px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
        }
        
        .section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: linear-gradient(to right, var(--accent), var(--accent-light));
        }
        
        .section h2 {
            color: var(--accent-light);
            margin-bottom: 1.8rem;
            padding-bottom: 0.8rem;
            border-bottom: 2px solid rgba(52, 152, 219, 0.3);
            font-size: 1.8rem;
            position: relative;
            display: flex;
            align-items: center;
        }
        
        .section h2 i {
            margin-right: 15px;
            background: rgba(52, 152, 219, 0.2);
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
        }
        
        .section h3 {
            color: var(--accent-light);
            margin: 1.8rem 0 1.2rem;
            font-size: 1.3rem;
            display: flex;
            align-items: center;
        }
        
        .section h3 i {
            margin-right: 10px;
            color: var(--accent);
        }
        
        .section p {
            margin-bottom: 1.2rem;
            font-size: 1.05rem;
            color: #e0e7f3;
            line-height: 1.7;
        }
        
        .section ul {
            margin-left: 1.8rem;
            margin-bottom: 1.8rem;
        }
        
        .section li {
            margin-bottom: 0.8rem;
            position: relative;
            padding-left: 1.8rem;
            color: #e0e7f3;
        }
        
        .section li:before {
            content: '';
            position: absolute;
            left: 0;
            top: 0.6rem;
            width: 8px;
            height: 8px;
            background: var(--accent);
            border-radius: 50%;
        }
        
        .highlight {
            background: rgba(26, 42, 74, 0.9);
            padding: 1.8rem;
            border-radius: 15px;
            border-left: 4px solid var(--warning);
            margin: 1.8rem 0;
            position: relative;
            overflow: hidden;
        }
        
        .highlight::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(45deg, transparent 50%, rgba(243, 156, 18, 0.05) 100%);
        }
        
        .highlight p {
            margin-bottom: 0;
            position: relative;
            z-index: 1;
        }
        
        .highlight p i {
            color: var(--warning);
            margin-right: 10px;
        }
        
        .contact-info {
            background: rgba(26, 42, 74, 0.9);
            padding: 2rem;
            border-radius: 15px;
            border-left: 4px solid var(--accent);
            margin-top: 1.8rem;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 1.5rem;
            position: relative;
            overflow: hidden;
        }
        
        .contact-info::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(45deg, transparent 50%, rgba(52, 152, 219, 0.05) 100%);
        }
        
        .contact-item {
            display: flex;
            align-items: center;
            position: relative;
            z-index: 1;
        }
        
        .contact-icon {
            width: 50px;
            height: 50px;
            background: rgba(52, 152, 219, 0.2);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 15px;
            font-size: 1.2rem;
            color: var(--accent-light);
        }
        
        .contact-text {
            flex: 1;
        }
        
        .contact-text p {
            margin: 0;
            color: #e0e7f3;
        }
        
        .contact-text p:first-child {
            font-weight: 500;
            color: var(--accent-light);
        }
        
        /* Back Button */
        .back-btn {
            display: inline-flex;
            align-items: center;
            padding: 1rem 2rem;
            background: linear-gradient(45deg, var(--accent), var(--accent-dark));
            color: white;
            text-decoration: none;
            border-radius: 50px;
            font-weight: 500;
            transition: all 0.4s ease;
            margin-top: 1.5rem;
            border: none;
            cursor: pointer;
            font-size: 1.1rem;
            box-shadow: 0 5px 15px rgba(52, 152, 219, 0.4);
            position: relative;
            overflow: hidden;
            z-index: 1;
        }
        
        .back-btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(45deg, var(--accent-dark), var(--accent));
            opacity: 0;
            transition: opacity 0.4s ease;
            z-index: -1;
        }
        
        .back-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(52, 152, 219, 0.6);
        }
        
        .back-btn:hover::before {
            opacity: 1;
        }
        
        .back-btn i {
            margin-right: 10px;
            transition: transform 0.4s ease;
        }
        
        .back-btn:hover i {
            transform: translateX(-5px);
        }
        
        /* Footer */
        .footer {
            text-align: center;
            padding: 2.5rem 2rem;
            color: #a0b1c5;
            font-size: 1rem;
            position: relative;
        }
        
        .footer::before {
            content: '';
            position: absolute;
            top: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 80%;
            height: 1px;
            background: linear-gradient(to right, transparent, rgba(52, 152, 219, 0.3), transparent);
        }
        
        .footer p {
            margin-bottom: 0.5rem;
        }
        
        .footer a {
            color: var(--accent-light);
            text-decoration: none;
            transition: color 0.3s ease;
            position: relative;
        }
        
        .footer a::after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 0;
            height: 1px;
            background: var(--accent-light);
            transition: width 0.3s ease;
        }
        
        .footer a:hover {
            color: white;
        }
        
        .footer a:hover::after {
            width: 100%;
        }
        
        /* Responsive Design */
        @media (max-width: 992px) {
            .header h1 {
                font-size: 2.8rem;
            }
            
            .section {
                padding: 2rem;
            }
        }
        
        @media (max-width: 768px) {
            .header {
                padding: 3rem 1.5rem 2rem;
            }
            
            .header h1 {
                font-size: 2.3rem;
            }
            
            .privacy-container {
                padding: 0 1.5rem 3rem;
                gap: 2rem;
            }
            
            .section {
                padding: 1.8rem;
            }
            
            .section h2 {
                font-size: 1.6rem;
            }
        }
        
        @media (max-width: 576px) {
            .header h1 {
                font-size: 2rem;
            }
            
            .header p {
                font-size: 1rem;
            }
            
            .last-updated {
                padding: 0.6rem 1.5rem;
            }
            
            .section {
                padding: 1.5rem;
            }
            
            .section h2 {
                font-size: 1.4rem;
            }
            
            .section h2 i {
                width: 40px;
                height: 40px;
                font-size: 1.2rem;
            }
            
            .contact-info {
                grid-template-columns: 1fr;
            }
            
            .back-btn {
                padding: 0.9rem 1.8rem;
                font-size: 1rem;
            }
        }
        
        /* Animations */
        @keyframes float {
            0% { transform: translateY(0px); }
            50% { transform: translateY(-10px); }
            100% { transform: translateY(0px); }
        }
        
        .floating {
            animation: float 6s ease-in-out infinite;
        }