
        :root {
            --primary: #4361ee;
            --primary-dark: #3a0ca3;
            --secondary: #f72585;
            --light: #f8f9fa;
            --dark: #212529;
            --gray: #6c757d;
            --light-gray: #e9ecef;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: var(--dark);
            background-color: #f8fafc;
        }
        
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }
        
        /* Header Styles */
        header {
            background-color: white;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            position: sticky;
            top: 0;
            z-index: 100;
        }
        
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
        }
        
        .logo {
            display: flex;
            align-items: center;
            text-decoration: none;
        }
        
        .logo img {
            height: 40px;
            margin-right: 10px;
        }
        
        .logo-text {
            display: flex;
            flex-direction: column;
        }
        
        .logo-text h1 {
            color: var(--primary);
            font-size: 24px;
            line-height: 1;
        }
        
        .logo-text span {
            color: var(--gray);
            font-size: 12px;
            margin-top: 3px;
        }
        
        nav ul {
            display: flex;
            list-style: none;
        }
        
        nav ul li {
            margin-left: 25px;
        }
        
        nav ul li a {
            text-decoration: none;
            color: var(--dark);
            font-weight: 500;
            transition: color 0.3s;
            display: flex;
            align-items: center;
        }
        
        nav ul li a i {
            margin-right: 8px;
            font-size: 14px;
        }
        
        nav ul li a:hover {
            color: var(--primary);
        }
        
        /* Policy Hero Section */
        .policy-hero {
            background: linear-gradient(135deg, var(--primary), var(--primary-dark));
            color: white;
            padding: 80px 0;
            text-align: center;
        }
        
        .policy-hero h1 {
            font-size: 2.5rem;
            margin-bottom: 20px;
        }
        
        .policy-hero p {
            font-size: 1.2rem;
            max-width: 700px;
            margin: 0 auto;
        }
        
        /* Policy Content */
        .policy-container {
            display: flex;
            gap: 40px;
            padding: 60px 0;
        }
        
        .policy-sidebar {
            width: 280px;
            position: sticky;
            top: 100px;
            height: fit-content;
        }
        
        .policy-nav {
            background-color: white;
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            padding: 20px;
        }
        
        .policy-nav h3 {
            margin-bottom: 20px;
            color: var(--primary);
            padding-bottom: 10px;
            border-bottom: 1px solid var(--light-gray);
        }
        
        .policy-nav ul {
            list-style: none;
        }
        
        .policy-nav li {
            margin-bottom: 10px;
        }
        
        .policy-nav a {
            color: var(--gray);
            text-decoration: none;
            transition: color 0.3s;
            display: block;
            padding: 8px 0;
        }
        
        .policy-nav a:hover, .policy-nav a.active {
            color: var(--primary);
            font-weight: 500;
        }
        
        .policy-content {
            flex: 1;
            background-color: white;
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            padding: 40px;
        }
        
        .policy-section {
            margin-bottom: 40px;
        }
        
        .policy-section h2 {
            color: var(--primary);
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 1px solid var(--light-gray);
        }
        
        .policy-section h3 {
            margin: 25px 0 15px;
            color: var(--dark);
        }
        
        .policy-section p {
            margin-bottom: 15px;
            color: var(--gray);
        }
        
        .policy-section ul {
            margin-bottom: 15px;
            padding-left: 20px;
            color: var(--gray);
        }
        
        .policy-section ul li {
            margin-bottom: 8px;
        }
        
        .last-updated {
            font-style: italic;
            color: var(--gray);
            margin-top: 40px;
            font-size: 0.9rem;
        }
        
        /* Ad Banner */
        .ad-banner {
            background-color: var(--light-gray);
            padding: 20px;
            text-align: center;
            margin: 40px 0;
            border-radius: 8px;
            border: 1px dashed var(--gray);
        }
        
        /* Footer */
        footer {
            background-color: var(--dark);
            color: white;
            padding: 60px 0 20px;
        }
        
        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }
        
        .footer-col h3 {
            margin-bottom: 20px;
            font-size: 1.2rem;
            position: relative;
            padding-bottom: 10px;
        }
        
        .footer-col h3::after {
            content: "";
            position: absolute;
            bottom: 0;
            left: 0;
            width: 40px;
            height: 2px;
            background-color: var(--primary);
        }
        
        .footer-col p {
            color: #adb5bd;
            margin-bottom: 15px;
            font-size: 0.9rem;
        }
        
        .footer-col ul {
            list-style: none;
        }
        
        .footer-col ul li {
            margin-bottom: 10px;
        }
        
        .footer-col ul li a {
            color: #adb5bd;
            text-decoration: none;
            transition: color 0.3s;
            font-size: 0.9rem;
        }
        
        .footer-col ul li a:hover {
            color: white;
        }
        
        .social-links {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }
        
        .social-links a {
            color: white;
            background-color: #495057;
            width: 35px;
            height: 35px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: background-color 0.3s;
        }
        
        .social-links a:hover {
            background-color: var(--primary);
        }
        
        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid #495057;
            color: #adb5bd;
            font-size: 0.9rem;
        }
        
        /* Responsive */
        @media (max-width: 992px) {
            .policy-container {
                flex-direction: column;
            }
            
            .policy-sidebar {
                width: 100%;
                position: static;
            }
        }
        
        @media (max-width: 768px) {
            .header-container {
                flex-direction: column;
            }
            
            nav ul {
                margin-top: 20px;
            }
            
            nav ul li {
                margin-left: 15px;
                margin-right: 15px;
            }
            
            .policy-hero h1 {
                font-size: 2rem;
            }
            
            .policy-content {
                padding: 25px;
            }
        }