:root {
            --primary-color: #FF6B6B;
            --secondary-color: #4ECDC4;
            --tertiary-color: #FFE66D;
            --background-color: #1A1A2E;
            --text-color: #F7F7F7;
            --card-background: rgba(255, 255, 255, 0.1);
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Arial', sans-serif;
            background-color: var(--background-color);
            color: var(--text-color);
            line-height: 1.6;
            overflow-x: hidden;
        }
        
        .container {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        /* Header Styles */
        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            background-color: rgba(26, 26, 46, 0.95);
            z-index: 1000;
            padding: 15px 0;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
        }
        
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .logo {
            font-size: 24px;
            font-weight: bold;
            color: var(--primary-color);
            text-decoration: none;
            letter-spacing: 1px;
            text-transform: uppercase;
        }
        
        .logo span {
            color: var(--secondary-color);
        }
        
        nav ul {
            display: flex;
            list-style: none;
        }
        
        nav ul li {
            margin-left: 30px;
        }
        
        nav ul li a {
            color: var(--text-color);
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s;
            position: relative;
        }
        
        nav ul li a:hover {
            color: var(--secondary-color);
        }
        
        nav ul li a::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: -5px;
            left: 0;
            background-color: var(--secondary-color);
            transition: width 0.3s;
        }
        
        nav ul li a:hover::after {
            width: 100%;
        }
        
        .burger {
            display: none;
            cursor: pointer;
        }
        
        .burger div {
            width: 25px;
            height: 3px;
            background-color: var(--text-color);
            margin: 5px 0;
            transition: all 0.3s ease;
        }
        
        /* Main Content */
        main {
            padding-top: 100px;
            padding-bottom: 50px;
            min-height: 100vh;
        }
        
        .page-title {
            text-align: center;
            margin-bottom: 50px;
            padding-top: 30px;
        }
        
        .page-title h1 {
            font-size: 2.5rem;
            color: var(--primary-color);
            margin-bottom: 15px;
            text-transform: uppercase;
            letter-spacing: 1px;
            position: relative;
            display: inline-block;
        }
        
        .page-title h1::after {
            content: '';
            position: absolute;
            width: 50%;
            height: 3px;
            background-color: var(--secondary-color);
            bottom: -10px;
            left: 25%;
        }
        
        .page-title p {
            font-size: 1.1rem;
            max-width: 700px;
            margin: 20px auto 0;
            color: var(--text-color);
        }
        
        .cookie-content {
            background-color: var(--card-background);
            border-radius: 10px;
            padding: 40px;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
        }
        
        .cookie-section {
            margin-bottom: 30px;
        }
        
        .cookie-section h2 {
            font-size: 1.8rem;
            color: var(--secondary-color);
            margin-bottom: 15px;
        }
        
        .cookie-section h3 {
            font-size: 1.4rem;
            color: var(--tertiary-color);
            margin: 20px 0 10px;
        }
        
        .cookie-section p {
            margin-bottom: 15px;
        }
        
        .cookie-section ul {
            margin-left: 20px;
            margin-bottom: 15px;
        }
        
        .cookie-section li {
            margin-bottom: 10px;
        }
        
        .cookie-types {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 20px;
            margin: 30px 0;
        }
        
        .cookie-type {
            background-color: rgba(255, 255, 255, 0.05);
            border-radius: 8px;
            padding: 20px;
            border-left: 3px solid var(--primary-color);
        }
        
        .cookie-type h4 {
            font-size: 1.2rem;
            color: var(--primary-color);
            margin-bottom: 10px;
        }
        
        .cookie-type p {
            margin-bottom: 10px;
            font-size: 0.95rem;
        }
        
        /* Footer */
        footer {
            background-color: rgba(26, 26, 46, 0.9);
            padding: 50px 0 20px;
        }
        
        .footer-content {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            margin-bottom: 30px;
        }
        
        .footer-logo {
            flex: 1;
            min-width: 250px;
            margin-bottom: 20px;
        }
        
        .footer-logo h3 {
            font-size: 1.8rem;
            margin-bottom: 15px;
            color: var(--primary-color);
        }
        
        .footer-logo p {
            margin-bottom: 15px;
        }
        
        .footer-links {
            flex: 1;
            min-width: 250px;
            margin-bottom: 20px;
        }
        
        .footer-links h4 {
            font-size: 1.2rem;
            margin-bottom: 15px;
            color: var(--secondary-color);
        }
        
        .footer-links ul {
            list-style: none;
        }
        
        .footer-links li {
            margin-bottom: 10px;
        }
        
        .footer-links a {
            color: var(--text-color);
            text-decoration: none;
            transition: color 0.3s ease;
        }
        
        .footer-links a:hover {
            color: var(--secondary-color);
        }
        
        .footer-contact {
            flex: 1;
            min-width: 250px;
            margin-bottom: 20px;
        }
        
        .footer-contact h4 {
            font-size: 1.2rem;
            margin-bottom: 15px;
            color: var(--secondary-color);
        }
        
        .footer-contact p {
            margin-bottom: 10px;
            display: flex;
            align-items: center;
        }
        
        .footer-contact i {
            margin-right: 10px;
            color: var(--primary-color);
        }
        
        .footer-bottom {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }
        
        /* Responsive */
        @media (max-width: 768px) {
            .burger {
                display: block;
            }
            
            nav ul {
                position: fixed;
                top: 70px;
                left: 0;
                width: 100%;
                background-color: rgba(26, 26, 46, 0.95);
                flex-direction: column;
                align-items: center;
                padding: 20px 0;
                transform: translateY(-150%);
                transition: transform 0.3s ease;
            }
            
            nav ul.active {
                transform: translateY(0);
            }
            
            nav ul li {
                margin: 15px 0;
            }
            
            .page-title h1 {
                font-size: 2rem;
            }
            
            .cookie-content {
                padding: 20px;
            }
        }

