* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial', sans-serif;
        }
        
        :root {
            --primary: #ff006e;
            --secondary: #8338ec;
            --accent: #3a86ff;
            --light: #fb5607;
            --dark: #0a0e27;
            --text: #ffffff;
            --bg: #1a1f3a;
        }
        
        body {
            background-color: var(--bg);
            color: var(--text);
            line-height: 1.6;
            overflow-x: hidden;
        }
        
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        header {
            background-color: rgba(10, 14, 39, 0.9);
            backdrop-filter: blur(10px);
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1000;
            box-shadow: 0 4px 20px rgba(255, 0, 110, 0.3);
        }
        
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 20px;
        }
        
        .logo {
            font-size: 28px;
            font-weight: bold;
            color: var(--primary);
            text-decoration: none;
            text-transform: uppercase;
            letter-spacing: 2px;
            text-shadow: 0 0 10px rgba(255, 0, 110, 0.7);
        }
        
        .nav-menu {
            display: flex;
            list-style: none;
        }
        
        .nav-menu li {
            margin-left: 30px;
        }
        
        .nav-menu a {
            color: var(--text);
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s ease;
            position: relative;
        }
        
        .nav-menu a:after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background-color: var(--primary);
            transition: width 0.3s ease;
        }
        
        .nav-menu a:hover {
            color: var(--primary);
        }
        
        .nav-menu a:hover:after {
            width: 100%;
        }
        
        .burger {
            display: none;
            cursor: pointer;
        }
        
        .burger div {
            width: 25px;
            height: 3px;
            background-color: var(--text);
            margin: 5px 0;
            transition: all 0.3s ease;
        }
        
        main {
            margin-top: 70px;
            padding: 60px 0;
        }
        
        .page-header {
            background: linear-gradient(135deg, rgba(10, 14, 39, 0.8), rgba(131, 56, 236, 0.8)), url('../img/18.webp');
            background-size: cover;
            background-position: center;
            color: var(--text);
            text-align: center;
            padding: 100px 20px;
            position: relative;
            overflow: hidden;
        }
        
        .page-header:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle at 70% 30%, rgba(255, 0, 110, 0.3) 0%, rgba(10, 14, 39, 0) 70%);
        }
        
        .page-header-content {
            position: relative;
            z-index: 2;
        }
        
        .page-header h1 {
            font-size: 48px;
            margin-bottom: 20px;
            text-transform: uppercase;
            letter-spacing: 3px;
            text-shadow: 0 0 20px rgba(255, 0, 110, 0.7);
        }
        
        .page-header p {
            font-size: 20px;
            max-width: 700px;
            margin: 0 auto;
            opacity: 0.9;
        }
        
        .privacy-content {
            background: linear-gradient(135deg, rgba(26, 31, 58, 0.7), rgba(10, 14, 39, 0.7));
            border: 1px solid rgba(58, 134, 255, 0.2);
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(58, 134, 255, 0.2);
            padding: 50px;
            margin: 40px auto;
            max-width: 900px;
            position: relative;
        }
        
        .privacy-content:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('../img/grid.png');
            opacity: 0.1;
            pointer-events: none;
            border-radius: 15px;
        }
        
        .privacy-section {
            margin-bottom: 40px;
            position: relative;
            z-index: 1;
        }
        
        .privacy-section h2 {
            font-size: 32px;
            color: var(--primary);
            margin-bottom: 20px;
            text-transform: uppercase;
            letter-spacing: 1px;
            position: relative;
            display: inline-block;
        }
        
        .privacy-section h2:after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 80px;
            height: 3px;
            background: linear-gradient(90deg, var(--primary), var(--secondary));
        }
        
        .privacy-section h3 {
            font-size: 24px;
            color: var(--accent);
            margin: 25px 0 15px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        .privacy-section p {
            margin-bottom: 20px;
            color: rgba(255, 255, 255, 0.9);
            line-height: 1.8;
        }
        
        .privacy-section ul {
            margin-left: 25px;
            margin-bottom: 20px;
        }
        
        .privacy-section li {
            margin-bottom: 12px;
            color: rgba(255, 255, 255, 0.9);
            line-height: 1.8;
        }
        
        footer {
            background-color: var(--dark);
            color: var(--text);
            padding: 60px 0 30px;
            position: relative;
            overflow: hidden;
        }
        
        footer:before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(255, 0, 110, 0.1) 0%, rgba(10, 14, 39, 0) 70%);
            z-index: 0;
        }
        
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
            position: relative;
            z-index: 1;
        }
        
        .footer-column h3 {
            font-size: 20px;
            margin-bottom: 20px;
            color: var(--primary);
            text-transform: uppercase;
            letter-spacing: 1px;
            position: relative;
            display: inline-block;
        }
        
        .footer-column h3:after {
            content: '';
            position: absolute;
            bottom: -8px;
            left: 0;
            width: 40px;
            height: 2px;
            background-color: var(--primary);
        }
        
        .footer-links {
            list-style: none;
        }
        
        .footer-links li {
            margin-bottom: 12px;
        }
        
        .footer-links a {
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            transition: all 0.3s ease;
            display: inline-block;
            position: relative;
        }
        
        .footer-links a:before {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 1px;
            background-color: var(--primary);
            transition: width 0.3s ease;
        }
        
        .footer-links a:hover {
            color: var(--primary);
        }
        
        .footer-links a:hover:before {
            width: 100%;
        }
        
        .contact-info p {
            margin-bottom: 15px;
            display: flex;
            align-items: flex-start;
            color: rgba(255, 255, 255, 0.7);
        }
        
        .contact-info i {
            margin-right: 10px;
            color: var(--primary);
            font-size: 18px;
            margin-top: 3px;
        }
        
        .footer-bottom {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            font-size: 14px;
            color: rgba(255, 255, 255, 0.5);
            position: relative;
            z-index: 1;
        }
        
        .cookie-popup {
            position: fixed;
            bottom: 20px;
            left: 20px;
            right: 20px;
            background: linear-gradient(135deg, rgba(26, 31, 58, 0.95), rgba(10, 14, 39, 0.95));
            border: 1px solid rgba(255, 0, 110, 0.3);
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
            padding: 20px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            z-index: 1001;
            transform: translateY(150%);
            transition: transform 0.3s ease;
        }
        
        .cookie-popup.show {
            transform: translateY(0);
        }
        
        .cookie-content {
            flex: 1;
            padding-right: 20px;
        }
        
        .cookie-content p {
            margin-bottom: 10px;
            font-size: 14px;
            color: rgba(255, 255, 255, 0.8);
        }
        
        .cookie-buttons {
            display: flex;
            gap: 10px;
        }
        
        .cookie-btn {
            padding: 10px 20px;
            border-radius: 50px;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s ease;
            border: none;
            text-transform: uppercase;
            letter-spacing: 1px;
            font-size: 12px;
        }
        
        .cookie-accept {
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            color: var(--text);
            box-shadow: 0 4px 15px rgba(255, 0, 110, 0.4);
        }
        
        .cookie-accept:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(255, 0, 110, 0.6);
        }
        
        .cookie-decline {
            background: transparent;
            color: var(--text);
            border: 1px solid rgba(255, 255, 255, 0.3);
        }
        
        .cookie-decline:hover {
            background-color: rgba(255, 255, 255, 0.1);
        }
        
        @media (max-width: 992px) {
            .page-header h1 {
                font-size: 36px;
            }
            
            .page-header p {
                font-size: 18px;
            }
            
            .privacy-content {
                padding: 30px;
            }
        }
        
        @media (max-width: 768px) {
            .nav-menu {
                position: fixed;
                top: 70px;
                left: -100%;
                width: 100%;
                height: calc(100vh - 70px);
                background-color: rgba(10, 14, 39, 0.95);
                flex-direction: column;
                align-items: center;
                justify-content: start;
                padding-top: 50px;
                transition: left 0.3s ease;
            }
            
            .nav-menu.active {
                left: 0;
            }
            
            .nav-menu li {
                margin: 15px 0;
            }
            
            .burger {
                display: block;
            }
            
            .burger.active div:nth-child(1) {
                transform: rotate(-45deg) translate(-5px, 6px);
            }
            
            .burger.active div:nth-child(2) {
                opacity: 0;
            }
            
            .burger.active div:nth-child(3) {
                transform: rotate(45deg) translate(-5px, -6px);
            }
            
            .page-header {
                padding: 80px 20px;
            }
            
            .page-header h1 {
                font-size: 30px;
            }
            
            .privacy-content {
                padding: 20px;
            }
            
            .privacy-section h2 {
                font-size: 28px;
            }
            
            .privacy-section h3 {
                font-size: 22px;
            }
            
            .cookie-popup {
                flex-direction: column;
                text-align: center;
            }
            
            .cookie-buttons {
                margin-top: 15px;
                width: 100%;
                justify-content: center;
            }
        }
        
        @media (max-width: 576px) {
            .page-header h1 {
                font-size: 24px;
            }
            
            .page-header p {
                font-size: 16px;
            }
            
            main {
                padding: 40px 0;
            }
            
            .privacy-content {
                margin: 20px auto;
                padding: 15px;
            }
            
            .privacy-section h2 {
                font-size: 24px;
            }
            
            .privacy-section h3 {
                font-size: 20px;
            }
            
            .footer-content {
                grid-template-columns: 1fr;
                text-align: center;
            }
            
            .footer-column h3:after {
                left: 50%;
                transform: translateX(-50%);
            }
            
            .contact-info p {
                justify-content: center;
            }
            
            .cookie-buttons {
                flex-direction: column;
                gap: 10px;
            }
            
            .cookie-btn {
                width: 100%;
            }
        }

