:root {
            --primary-color: #2c3e50;
            --secondary-color: #3498db;
            --accent-color: #e74c3c;
            --light-color: #f8f9fa;
            --dark-color: #212529;
            --success-color: #ff99ff;
            --warning-color: #f39c12;
        }
        
        body{
            font-family: 'Segoe UI', Verdana, sans-serif;
            color: #009900;
            line-height: 1.6;
            scroll-behavior: smooth;
        }
        
         .navbar {
            background-color:#060270;
            box-shadow: 0 2px 4px rgba(0,0,0,0.1);
            margin-top: 10px;
        }
        .navbar-brand img {
            height: 70px;
        }
        .nav-link {
            color: #FE9900;
            font-weight: 500;
        }
        
        .policy-header {
            background:url('https://images.pexels.com/photos/5905922/pexels-photo-5905922.jpeg');
            background-size: cover;
            background-position: center;
            color: #cc33ff;
            padding: 90px 0;
            text-align: center;
            position: relative;
        }
        
        .policy-header h1 {
            font-size: 2.4rem;
            font-weight: 600;
            margin-bottom: 1rem;
            text-shadow: 0 2px 4px rgba(0,0,0,0.3);
        }
        
        .policy-header p {
            font-size: 1.2rem;
            max-width: 700px;
            margin: 0 auto;
            text-shadow: 0 1px 2px rgba(0,0,0,0.3);
        }
        
        .compliance-banner {
            background-color: var(--primary-color);
            color: #ffa500;
            padding: 15px 0;
            text-align: center;
            font-size: 0.9rem;
            border-bottom: 3px solid var(--secondary-color);
        }
        
        .compliance-banner i {
            margin-right: 8px;
            color: var(--success-color);
        }
        
        .policy-nav {
            background-color: #006699;
            position: sticky;
            top: 0;
            z-index: 1020;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
        }
        
        .policy-nav.scrolled {
            padding: 5px 0;
        }
        
        .policy-nav .nav-link {
            color:#ff8000;
            font-weight: 600;
            padding: 1rem 1.5rem;
            transition: all 0.3s ease;
            border-radius: 4px;
            margin: 0 5px;
        }
        
        .policy-nav .nav-link:hover, .policy-nav .nav-link.active {
            color:#ffff00;
            background-color:#0040ff;
        }
        
        .policy-section {
            padding: 50px 0;
            border-bottom: 1px solid #eee;
        }
        
        .policy-section h2 {
            color: var(--primary-color);
            margin-bottom: 30px;
            font-weight: 500;
            position: relative;
            padding-bottom: 15px;
        }
        
        .policy-section h2:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 300px;
            height: 4px;
            background:#ff6600;
            border-radius: 2px;
        }
        
        .policy-section h3 {
            color:#0000ff;
            margin: 30px 0 20px;
            font-weight: 600;
        }
        
        .highlight-box {
            background-color:#e6fff2;
            border-left: 4px solid var(--secondary-color);
            padding: 25px;
            margin: 25px 0;
            border-radius: 0 8px 8px 0;
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
        }
        
        .info-card {
            background: white;
            border-radius: 8px;
            padding: 20px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.08);
            margin-bottom: 20px;
            border-top: 4px solid var(--secondary-color);
            transition: transform 0.3s ease;
        }
        
        .info-card:hover {
            transform: translateY(-5px);
        }
        
        .info-card h4 {
            color: var(--primary-color);
            margin-bottom: 15px;
        }
        
        .back-to-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            background: var(--secondary-color);
            color: white;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            box-shadow: 0 4px 12px rgba(0,0,0,0.2);
            opacity: 0;
            transition: all 0.3s ease;
            z-index: 1000;
        }
        
        .back-to-top.visible {
            opacity: 1;
        }
        
        .back-to-top:hover {
            background: var(--primary-color);
            transform: translateY(-3px);
        }
        
        .policy-toc {
            background: var(--light-color);
            border-radius: 8px;
            padding: 25px;
            margin-bottom: 40px;
            border-left: 4px solid var(--secondary-color);
        }
        
        .policy-toc h4 {
            color: var(--primary-color);
            margin-bottom: 15px;
        }
        
        .policy-toc ul {
            padding-left: 20px;
        }
        
        .policy-toc li {
            margin-bottom: 8px;
        }
        
        .policy-toc a {
            color: var(--dark-color);
            text-decoration: none;
            transition: color 0.3s ease;
        }
        
        .policy-toc a:hover {
            color: var(--secondary-color);
        }
        
        .update-badge {
            background: var(--accent-color);
            color: white;
            padding: 3px 10px;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 600;
            margin-left: 10px;
            vertical-align: middle;
        }
        
        .regulation-badge {
            display: inline-block;
            background: var(--success-color);
            color: white;
            padding: 3px 8px;
            border-radius: 4px;
            font-size: 0.7rem;
            font-weight: 600;
            margin-left: 5px;
            vertical-align: super;
        }
        
        .consent-banner {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background: var(--primary-color);
            color: white;
            padding: 20px;
            box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
            z-index: 1050;
            display: none;
        }
        
        .consent-banner p {
            margin-bottom: 15px;
        }
        
        .consent-buttons .btn {
            margin-right: 10px;
            margin-bottom: 10px;
        }
        
        .table-of-contents {
            position: sticky;
            top: 100px;
        }
        
        @media (max-width: 768px) {
            .policy-header {
                padding: 80px 0;
            }
            
            .policy-header h1 {
                font-size: 2.2rem;
            }
            
            .policy-nav .nav-link {
                padding: 0.8rem 1rem;
                font-size: 0.9rem;
            }
            
            .policy-section {
                padding: 60px 0;
            }
            
            .table-of-contents {
                position: static;
                margin-bottom: 30px;
            }
        }