:root {
            --primary: #2563EB; /* Blue 600 */
            --primary-dark: #1E40AF; /* Blue 800 */
            --secondary: #0EA5E9; /* Sky 500 */
            --bg-dark: #0F172A; /* Slate 900 */
            --bg-card: rgba(255, 255, 255, 0.03);
            --bg-card-hover: rgba(255, 255, 255, 0.08);
            --text-main: #F8FAFC;
            --text-muted: #94A3B8;
            --border-color: rgba(255, 255, 255, 0.08);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Outfit', sans-serif;
        }

        body {
            background-color: var(--bg-dark);
            color: var(--text-main);
            overflow-x: hidden;
            line-height: 1.6;
            position: relative;
        }

        /* Scroll Progress Bar */
        .progress-container {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: rgba(255,255,255,0.05);
            z-index: 1001;
        }
        
        .progress-bar {
            height: 100%;
            background: linear-gradient(90deg, var(--primary), var(--secondary));
            width: 0%;
        }

        /* Nav */
        nav {
            position: fixed;
            top: 4px;
            width: 100%;
            padding: 20px 5%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            z-index: 1000;
            background: rgba(15, 23, 42, 0.95);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid var(--border-color);
        }

        .logo-container {
            display: flex;
            align-items: center;
            gap: 12px;
            text-decoration: none;
        }

        .brand-logo {
            height: 64px;
            width: auto;
            object-fit: contain;
        }

        .logo-text-wrapper {
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .logo {
            font-size: 2rem;
            font-weight: 800;
            color: #ffffff;
            line-height: 1.1;
        }

        .logo-subtext {
            color: var(--secondary);
            font-size: 0.75rem;
            font-weight: 600;
            letter-spacing: 1px;
            text-transform: uppercase;
            margin-top: 2px;
        }

        .nav-links {
            display: flex;
            gap: 30px;
            list-style: none;
        }

        .nav-links a {
            color: var(--text-main);
            text-decoration: none;
            font-weight: 500;
            font-size: 1rem;
            transition: color 0.3s ease;
            position: relative;
        }

        .nav-links a:hover {
            color: var(--primary);
        }

        /* Page Header */
        .page-header {
            padding: 180px 5% 60px;
            text-align: center;
            background: transparent;
            border-bottom: 1px solid var(--border-color);
            position: relative;
            overflow: hidden;
        }

        .page-header::before {
            content: '';
            position: absolute;
            top: -50%;
            left: 50%;
            transform: translateX(-50%);
            width: 60vw;
            height: 60vw;
            background: radial-gradient(circle, var(--primary) 0%, transparent 60%);
            opacity: 0.1;
            filter: blur(80px);
            z-index: -1;
            animation: pulse-slow 8s infinite alternate;
        }

        @keyframes pulse-slow {
            0% { transform: translate(-50%, 0) scale(1); }
            100% { transform: translate(-50%, -20px) scale(1.1); }
        }

        .page-header h1 {
            font-size: 3.5rem;
            font-weight: 800;
            margin-bottom: 16px;
            background: linear-gradient(135deg, #fff 0%, #60A5FA 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .page-header p {
            color: var(--text-muted);
            font-size: 1.1rem;
        }

        /* Content */
        .policy-content {
            max-width: 800px;
            margin: 0 auto;
            padding: 60px 5%;
        }

        .policy-section {
            margin-bottom: 40px;
            background: var(--bg-card);
            border: 1px solid var(--border-color);
            border-radius: 16px;
            padding: 40px;
            transition: all 0.3s ease;
        }

        .policy-section:hover {
            border-color: rgba(255,255,255,0.2);
            box-shadow: 0 10px 30px rgba(0,0,0,0.3);
            transform: translateY(-5px);
        }

        .policy-section h2 {
            font-size: 1.8rem;
            color: white;
            margin-bottom: 20px;
            border-bottom: 1px solid var(--border-color);
            padding-bottom: 10px;
        }

        .policy-section h3 {
            font-size: 1.3rem;
            color: #E2E8F0;
            margin-top: 24px;
            margin-bottom: 12px;
        }

        .policy-section p {
            color: var(--text-muted);
            margin-bottom: 16px;
            font-size: 1.05rem;
        }

        .policy-section ul {
            color: var(--text-muted);
            margin-left: 20px;
            margin-bottom: 16px;
        }

        .policy-section li {
            margin-bottom: 8px;
        }

        /* Footer */
        footer {
            padding: 40px 5%;
            background: #050810;
            border-top: 1px solid var(--border-color);
            text-align: center;
            color: var(--text-muted);
        }

        .footer-links {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-bottom: 20px;
        }

        .footer-links a {
            color: var(--text-muted);
            text-decoration: none;
            transition: color 0.3s ease;
            font-size: 0.95rem;
        }

        .footer-links a:hover {
            color: white;
            text-decoration: underline;
        }

        /* tsParticles Background */
        #tsparticles {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -1;
        }
        
        .page-header > *, .policy-content, footer {
            position: relative;
            z-index: 1;
        }