:root {
            --color-primary: #4A2C85;
            --color-secondary: #00BCD4;
            --color-accent: #FFEB3B;
            --color-background: #2A1E4D;
            --color-text: #F5F5F5;
            --font-family-header: 'Orbitron', sans-serif;
            --font-family-body: 'Roboto', sans-serif;
        }
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            scroll-behavior: smooth;
        }
        body {
            font-family: var(--font-family-body);
            background-color: var(--color-background);
            color: var(--color-text);
            line-height: 1.6;
        }
        h1, h2, h3 {
            font-family: var(--font-family-header);
            text-transform: uppercase;
        }
        h1 { font-size: 3rem; }
        h2 { font-size: 2.5rem; }
        h3 { font-size: 1.8rem; }
        a {
            color: var(--color-secondary);
            text-decoration: none;
            transition: color 0.3s ease;
        }
        a:hover { color: var(--color-accent); }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            background-color: rgba(42, 30, 77, 0.95);
            backdrop-filter: blur(5px);
            z-index: 100;
            padding: 1rem 0;
            border-bottom: 2px solid var(--color-primary);
        }
        header .container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            font-family: var(--font-family-header);
            font-size: 2rem;
            color: var(--color-accent);
            text-shadow: 2px 2px var(--color-secondary);
        }
        .logo span { color: var(--color-secondary); }
        .nav-menu {
            display: flex;
            list-style: none;
        }
        .nav-menu li { margin-left: 25px; }
        .nav-menu a {
            font-family: var(--font-family-header);
            color: var(--color-text);
            position: relative;
        }
        .nav-menu a::after {
            content: '';
            display: block;
            width: 0;
            height: 2px;
            background: var(--color-accent);
            position: absolute;
            bottom: -5px;
            left: 0;
            transition: width 0.3s ease;
        }
        .nav-menu a:hover::after { width: 100%; }
        .burger-menu {
            display: none;
            flex-direction: column;
            cursor: pointer;
        }
        .burger-menu .bar {
            width: 25px;
            height: 3px;
            background-color: var(--color-text);
            margin: 4px 0;
            transition: all 0.3s ease;
        }
        main {
            padding-top: 120px;
            padding-bottom: 80px;
        }
        .policy-section {
            background-color: var(--color-background);
            padding: 40px;
            border-radius: 10px;
            animation: fadeIn 0.8s forwards;
        }
        .policy-section h1 {
            color: var(--color-accent);
            margin-bottom: 20px;
            border-bottom: 2px solid var(--color-secondary);
            padding-bottom: 10px;
        }
        .policy-section h2 {
            color: var(--color-secondary);
            margin-top: 30px;
            margin-bottom: 15px;
        }
        .policy-section p, .policy-section ul {
            margin-bottom: 15px;
        }
        .policy-section ul {
            padding-left: 20px;
        }
        footer {
            background-color: #1A152E;
            padding: 40px 0;
            color: rgba(245, 245, 245, 0.8);
        }
        footer .container {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: flex-start;
        }
        .footer-logo { font-size: 2rem; color: var(--color-accent); margin-bottom: 10px; }
        .footer-section {
            flex: 1;
            min-width: 250px;
            margin: 20px 0;
        }
        .footer-section h3 { margin-bottom: 15px; color: var(--color-secondary); }
        .footer-section ul { list-style: none; }
        .footer-section a { color: rgba(245, 245, 245, 0.8); }
        .footer-section p { margin-bottom: 5px; }

        @media (max-width: 768px) {
            h1 { font-size: 2.5rem; }
            h2 { font-size: 2rem; }
            h3 { font-size: 1.5rem; }
            .nav-menu {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 80px;
                left: 0;
                width: 100%;
                background-color: rgba(42, 30, 77, 0.95);
                padding: 20px;
                text-align: center;
            }
            .nav-menu.active { display: flex; }
            .nav-menu li { margin: 10px 0; }
            .burger-menu { display: flex; }
            footer .container { flex-direction: column; }
        }

