:root {
            --primary: #2c3e50;
            --secondary: #3498db;
            --accent: #e74c3c;
            --light: #ecf0f1;
            --gray: #95a5a6;
            --white: #ffffff;
            --dark: #1a252f;
            --spacing: 1rem;
            --radius: 8px;
            --transition: all 0.3s ease;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: var(--dark);
            background-color: var(--white);
            overflow-x: hidden;
        }
        
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 var(--spacing);
        }
        
        /* Header */
        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            background-color: var(--white);
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            z-index: 1000;
            transition: var(--transition);
        }
        
        .header-container {
            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;
        }
        
        .logo span {
            color: var(--accent);
        }
        
        .nav-toggle {
            display: none;
            flex-direction: column;
            justify-content: space-between;
            width: 30px;
            height: 21px;
            cursor: pointer;
        }
        
        .nav-toggle span {
            display: block;
            height: 3px;
            width: 100%;
            background-color: var(--primary);
            border-radius: 3px;
            transition: var(--transition);
        }
        
        nav ul {
            display: flex;
            list-style: none;
        }
        
        nav ul li {
            margin-left: 1.5rem;
        }
        
        nav ul li a {
            text-decoration: none;
            color: var(--dark);
            font-weight: 500;
            transition: var(--transition);
            position: relative;
        }
        
        nav ul li a:hover {
            color: var(--secondary);
        }
        
        nav ul li a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background-color: var(--accent);
            transition: var(--transition);
        }
        
        nav ul li a:hover::after {
            width: 100%;
        }
        
        /* Hero Section */
        .hero {
            padding: 10rem 0 5rem;
            background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
            color: var(--white);
            position: relative;
            overflow: hidden;
        }
        
        .hero-content {
            position: relative;
            z-index: 1;
            text-align: center;
            padding: 2rem 0;
        }
        
        .hero h1 {
            font-size: 3rem;
            margin-bottom: 1.5rem;
            line-height: 1.2;
        }
        
        .hero p {
            font-size: 1.2rem;
            max-width: 800px;
            margin: 0 auto;
        }
        
        /* Cookie Content */
        .cookie-content {
            padding: 4rem 0;
            background-color: var(--white);
        }
        
        .cookie-container {
            max-width: 800px;
            margin: 0 auto;
            background-color: var(--light);
            padding: 3rem;
            border-radius: var(--radius);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        }
        
        .cookie-section {
            margin-bottom: 2.5rem;
        }
        
        .cookie-section:last-child {
            margin-bottom: 0;
        }
        
        .cookie-section h2 {
            font-size: 1.8rem;
            color: var(--primary);
            margin-bottom: 1rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid var(--accent);
        }
        
        .cookie-section h3 {
            font-size: 1.4rem;
            color: var(--primary);
            margin: 1.5rem 0 1rem;
        }
        
        .cookie-section p {
            margin-bottom: 1rem;
            color: var(--dark);
        }
        
        .cookie-section ul {
            margin-left: 2rem;
            margin-bottom: 1rem;
        }
        
        .cookie-section li {
            margin-bottom: 0.5rem;
        }
        
        .cookie-section strong {
            color: var(--primary);
        }
        
        .cookie-types {
            display: flex;
            flex-wrap: wrap;
            gap: 1.5rem;
            margin: 2rem 0;
        }
        
        .cookie-type {
            flex: 1;
            min-width: 250px;
            background-color: var(--white);
            padding: 1.5rem;
            border-radius: var(--radius);
            box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
        }
        
        .cookie-type h4 {
            color: var(--primary);
            margin-bottom: 0.8rem;
            font-size: 1.2rem;
        }
        
        .cookie-type p {
            font-size: 0.95rem;
            margin-bottom: 0;
        }
        
        /* Footer */
        footer {
            background-color: var(--dark);
            color: var(--white);
            padding: 3rem 0 1.5rem;
        }
        
        .footer-content {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 2rem;
            margin-bottom: 2rem;
        }
        
        .footer-column {
            flex: 1;
            min-width: 250px;
        }
        
        .footer-column h3 {
            font-size: 1.3rem;
            margin-bottom: 1.5rem;
            position: relative;
            padding-bottom: 0.5rem;
        }
        
        .footer-column h3::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 2px;
            background-color: var(--accent);
        }
        
        .footer-column ul {
            list-style: none;
        }
        
        .footer-column ul li {
            margin-bottom: 0.8rem;
        }
        
        .footer-column ul li a {
            color: var(--light);
            text-decoration: none;
            transition: var(--transition);
        }
        
        .footer-column ul li a:hover {
            color: var(--accent);
            padding-left: 5px;
        }
        
        .footer-bottom {
            text-align: center;
            padding-top: 1.5rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            font-size: 0.9rem;
            color: var(--gray);
        }
        
        /* Responsive */
        @media (max-width: 768px) {
            .nav-toggle {
                display: flex;
            }
            
            nav {
                position: fixed;
                top: 70px;
                left: 0;
                width: 100%;
                background-color: var(--white);
                padding: 1.5rem;
                box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
                transform: translateY(-100%);
                opacity: 0;
                visibility: hidden;
                transition: var(--transition);
            }
            
            nav.active {
                transform: translateY(0);
                opacity: 1;
                visibility: visible;
            }
            
            nav ul {
                flex-direction: column;
            }
            
            nav ul li {
                margin: 0 0 1rem 0;
            }
            
            .hero {
                padding: 8rem 0 4rem;
            }
            
            .hero h1 {
                font-size: 2.5rem;
            }
            
            .cookie-container {
                padding: 2rem 1.5rem;
            }
            
            .cookie-section h2 {
                font-size: 1.6rem;
            }
            
            .cookie-section h3 {
                font-size: 1.3rem;
            }
        }
        
        @media (max-width: 576px) {
            .hero h1 {
                font-size: 2rem;
            }
            
            .hero p {
                font-size: 1rem;
            }
            
            .cookie-types {
                flex-direction: column;
            }
        }

