@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;700&family=Roboto:wght@400;700&display=swap');

        :root {
            --primary-color: #f72585; /* Vibrant Pink */
            --secondary-color: #4361ee; /* Electric Blue */
            --accent-color: #4895ef; /* Lighter Blue */
            --text-color-light: #f1faee; /* Off-White */
            --text-color-dark: #2a2a2a; /* Dark Gray */
            --background-dark: #1a1a2e; /* Dark Purple-Blue */
            --background-light: #f0f0f0; /* Light Gray */
            --card-background: rgba(255, 255, 255, 0.1);
        }

        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        body {
            font-family: 'Roboto', sans-serif;
            color: var(--text-color-light);
            background-color: var(--background-dark);
            line-height: 1.6;
        }

        h1, h2, h3 {
            font-family: 'Orbitron', sans-serif;
            text-shadow: 2px 2px var(--secondary-color);
        }
        
        h1 { font-size: 3rem; }
        h2 { font-size: 2.5rem; }
        h3 { font-size: 1.8rem; }
        
        a {
            text-decoration: none;
            color: var(--accent-color);
            transition: color 0.3s ease;
        }

        a:hover {
            color: var(--primary-color);
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
        }

        /* Header */
        header {
            position: sticky;
            top: 0;
            left: 0;
            width: 100%;
            background-color: rgba(26, 26, 46, 0.8);
            backdrop-filter: blur(10px);
            z-index: 1000;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
        }

        .navbar {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1rem 2rem;
        }
        
        .logo {
            font-family: 'Orbitron', sans-serif;
            font-size: 1.8rem;
            font-weight: bold;
            color: var(--primary-color);
        }

        .nav-links {
            list-style: none;
            display: flex;
            gap: 2rem;
        }

        .nav-links a {
            font-weight: bold;
            text-transform: uppercase;
        }
        
        .burger-menu {
            display: none;
            cursor: pointer;
            flex-direction: column;
            gap: 5px;
        }
        
        .burger-menu div {
            width: 25px;
            height: 3px;
            background-color: var(--text-color-light);
            transition: all 0.3s ease;
        }
        
        /* Main Content */
        main {
            padding-top: 100px;
        }
        
        .policy-container {
            padding: 50px 0;
            background-color: var(--card-background);
            border-radius: 15px;
            margin: 40px auto;
            max-width: 900px;
        }

        .policy-container h1 {
            text-align: center;
            margin-bottom: 2rem;
        }

        .policy-section {
            padding: 0 40px;
            margin-bottom: 30px;
        }

        .policy-section h2 {
            margin-bottom: 15px;
            color: var(--primary-color);
            text-shadow: none;
        }
        
        .policy-section p, .policy-section ul {
            margin-bottom: 10px;
        }
        
        .policy-section ul {
            padding-left: 20px;
        }

        .policy-section li {
            margin-bottom: 5px;
        }
        
        .policy-section a {
            color: var(--accent-color);
        }
        
        /* Disclaimer */
        .disclaimer {
            text-align: center;
            font-size: 0.8rem;
            color: rgba(255, 255, 255, 0.6);
            padding: 20px;
            background-color: var(--background-dark);
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }

        /* Footer */
        footer {
            background-color: var(--background-dark);
            padding: 40px 0;
            border-top: 2px solid var(--primary-color);
        }
        
        .footer-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 20px;
            color: rgba(255, 255, 255, 0.8);
        }

        .footer-logo {
            font-family: 'Orbitron', sans-serif;
            font-size: 2rem;
            color: var(--primary-color);
        }

        .footer-links ul, .footer-contacts ul {
            list-style: none;
            padding: 0;
        }

        .footer-links ul li, .footer-contacts ul li {
            margin-bottom: 10px;
        }

        .footer-contacts p {
            margin-bottom: 10px;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .nav-links {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 70px;
                left: 0;
                width: 100%;
                background: rgba(26, 26, 46, 0.95);
                text-align: center;
                padding: 1rem 0;
                height: calc(100vh - 70px);
                overflow-y: auto;
            }
            
            .nav-links.active {
                display: flex;
            }

            .nav-links li {
                margin: 15px 0;
            }

            .burger-menu {
                display: flex;
            }
            
            .burger-menu.active .line1 { transform: rotate(-45deg) translate(-5px, 6px); }
            .burger-menu.active .line2 { opacity: 0; }
            .burger-menu.active .line3 { transform: rotate(45deg) translate(-5px, -6px); }

            .footer-content { flex-direction: column; text-align: center; }
            .footer-links, .footer-contacts { text-align: center; }
        }

