* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        :root {
            --primary: #567189;
            --secondary: #A3BCB6;
            --accent: #FFB6B9;
            --text: #333333;
            --text-secondary: #555555;
            --bg: #E8D5C4;
            --card-bg: rgba(255, 255, 255, 0.85);
            --transition: all 0.3s ease;
        }
        
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background-color: var(--bg);
            color: var(--text);
            line-height: 1.6;
            overflow-x: hidden;
            background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><rect width="100" height="100" fill="%23E8D5C4"/><circle cx="20" cy="20" r="2" fill="%23A3BCB6" opacity="0.3"/><circle cx="80" cy="40" r="3" fill="%23567189" opacity="0.2"/><circle cx="40" cy="80" r="2.5" fill="%23FFB6B9" opacity="0.25"/><circle cx="70" cy="70" r="2" fill="%238E7CC3" opacity="0.3"/></svg>');
        }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        /* Header Styles */
        header {
            position: fixed;
            top: 0;
            width: 100%;
            background-color: rgba(232, 213, 196, 0.95);
            backdrop-filter: blur(10px);
            z-index: 1000;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
            border-bottom: 2px solid var(--secondary);
        }
        
        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1rem 0;
        }
        
        .logo {
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--primary);
            text-decoration: none;
            letter-spacing: 1px;
            text-transform: uppercase;
            font-family: 'Arial Black', sans-serif;
            text-shadow: 2px 2px 0px rgba(163, 188, 182, 0.5);
        }
        
        .nav-links {
            display: flex;
            list-style: none;
        }
        
        .nav-links li {
            margin-left: 2rem;
        }
        
        .nav-links a {
            color: var(--text);
            text-decoration: none;
            font-size: 1rem;
            transition: var(--transition);
            position: relative;
            font-weight: 500;
        }
        
        .nav-links a:hover {
            color: var(--primary);
        }
        
        .nav-links a::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: -5px;
            left: 0;
            background-color: var(--accent);
            transition: var(--transition);
        }
        
        .nav-links a:hover::after {
            width: 100%;
        }
        
        .burger {
            display: none;
            cursor: pointer;
        }
        
        .burger div {
            width: 25px;
            height: 3px;
            background-color: var(--primary);
            margin: 5px;
            transition: var(--transition);
        }
        
        /* Content Section */
        .content {
            padding: 120px 0 80px;
        }
        
        .page-title {
            font-size: 2.5rem;
            margin-bottom: 2rem;
            color: var(--primary);
            text-align: center;
            font-family: 'Arial Black', sans-serif;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        .cookie-content {
            background-color: var(--card-bg);
            border-radius: 15px;
            padding: 3rem;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            backdrop-filter: blur(5px);
        }
        
        .cookie-section {
            margin-bottom: 2.5rem;
        }
        
        .cookie-section:last-child {
            margin-bottom: 0;
        }
        
        .cookie-section h2 {
            font-size: 1.8rem;
            margin-bottom: 1rem;
            color: var(--primary);
        }
        
        .cookie-section h3 {
            font-size: 1.4rem;
            margin: 1.5rem 0 1rem;
            color: var(--primary);
        }
        
        .cookie-section p {
            margin-bottom: 1rem;
            color: var(--text-secondary);
        }
        
        .cookie-section ul {
            margin-left: 2rem;
            margin-bottom: 1rem;
            color: var(--text-secondary);
        }
        
        .cookie-section li {
            margin-bottom: 0.5rem;
        }
        
        .cookie-types {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin: 2rem 0;
        }
        
        .cookie-type {
            background-color: rgba(86, 113, 137, 0.1);
            padding: 1.5rem;
            border-radius: 15px;
            border-left: 4px solid var(--accent);
        }
        
        .cookie-type h4 {
            font-size: 1.2rem;
            margin-bottom: 1rem;
            color: var(--primary);
        }
        
        .cookie-type p {
            color: var(--text-secondary);
            margin-bottom: 1rem;
        }
        
        .cookie-examples {
            background-color: rgba(163, 188, 182, 0.2);
            padding: 1rem;
            border-radius: 10px;
            font-size: 0.9rem;
            color: var(--text-secondary);
        }
        
        .cookie-examples strong {
            color: var(--primary);
        }
        
        /* Footer */
        footer {
            background-color: var(--primary);
            padding: 3rem 0 1rem;
            color: white;
        }
        
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-bottom: 2rem;
        }
        
        .footer-column h3 {
            font-size: 1.2rem;
            margin-bottom: 1.5rem;
            color: var(--accent);
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        .footer-links {
            list-style: none;
        }
        
        .footer-links li {
            margin-bottom: 0.8rem;
        }
        
        .footer-links a {
            color: white;
            text-decoration: none;
            transition: var(--transition);
        }
        
        .footer-links a:hover {
            color: var(--accent);
        }
        
        .contact-info p {
            margin-bottom: 0.8rem;
        }
        
        .copyright {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.2);
            font-size: 0.9rem;
        }
        
        /* Responsive */
        @media (max-width: 768px) {
            .nav-links {
                position: absolute;
                right: 0;
                top: 70px;
                background-color: var(--card-bg);
                width: 100%;
                flex-direction: column;
                align-items: center;
                padding: 2rem 0;
                transform: translateY(-150%);
                transition: var(--transition);
                box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            }
            
            .nav-links.active {
                transform: translateY(0);
            }
            
            .nav-links li {
                margin: 1rem 0;
            }
            
            .burger {
                display: block;
            }
            
            .page-title {
                font-size: 2rem;
            }
            
            .cookie-content {
                padding: 2rem;
            }
        }

