* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial', sans-serif;
        }
        
        :root {
            --primary-color: #D50000;
            --secondary-color: #212121;
            --tertiary-color: #424242;
            --accent-color: #FFC107;
            --light-color: #F5F5F5;
            --text-color: #212121;
            --transition: all 0.3s ease;
        }
        
        body {
            background-color: var(--light-color);
            color: var(--text-color);
            line-height: 1.6;
        }
        
        .container {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }
        
        /* Header Styles */
        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            background-color: var(--secondary-color);
            z-index: 1000;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
        }
        
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
        }
        
        .logo {
            font-size: 24px;
            font-weight: bold;
            color: var(--light-color);
            text-decoration: none;
            letter-spacing: 2px;
            text-transform: uppercase;
        }
        
        .logo span {
            color: var(--primary-color);
        }
        
        nav ul {
            display: flex;
            list-style: none;
        }
        
        nav ul li {
            margin-left: 25px;
        }
        
        nav ul li a {
            color: var(--light-color);
            text-decoration: none;
            font-size: 16px;
            font-weight: bold;
            text-transform: uppercase;
            transition: var(--transition);
            position: relative;
        }
        
        nav ul li a:hover {
            color: var(--accent-color);
        }
        
        nav ul li a::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            background-color: var(--accent-color);
            bottom: -5px;
            left: 0;
            transition: var(--transition);
        }
        
        nav ul li a:hover::after {
            width: 100%;
        }
        
        .hamburger {
            display: none;
            flex-direction: column;
            justify-content: space-between;
            width: 30px;
            height: 21px;
            cursor: pointer;
        }
        
        .hamburger span {
            display: block;
            height: 3px;
            width: 100%;
            background-color: var(--light-color);
            border-radius: 3px;
            transition: var(--transition);
        }
        
        /* Main Content */
        main {
            padding: 100px 0 50px;
        }
        
        .page-title {
            text-align: center;
            margin-bottom: 40px;
        }
        
        .page-title h1 {
            font-size: 2.5rem;
            color: var(--secondary-color);
            position: relative;
            display: inline-block;
            margin-bottom: 15px;
            text-transform: uppercase;
            font-weight: bold;
        }
        
        .page-title h1::after {
            content: '';
            position: absolute;
            width: 60px;
            height: 3px;
            background-color: var(--primary-color);
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
        }
        
        .cookie-content {
            background-color: white;
            border-radius: 0;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            padding: 40px;
            margin-bottom: 40px;
            border: 2px solid var(--secondary-color);
        }
        
        .cookie-content h2 {
            font-size: 1.8rem;
            color: var(--secondary-color);
            margin: 30px 0 15px;
            text-transform: uppercase;
        }
        
        .cookie-content h3 {
            font-size: 1.4rem;
            color: var(--tertiary-color);
            margin: 25px 0 10px;
            text-transform: uppercase;
        }
        
        .cookie-content p {
            margin-bottom: 15px;
        }
        
        .cookie-content ul {
            margin-left: 20px;
            margin-bottom: 15px;
        }
        
        .cookie-content li {
            margin-bottom: 10px;
        }
        
        .cookie-types {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
            margin: 30px 0;
        }
        
        .cookie-type {
            background-color: #f9f9f9;
            border-radius: 0;
            padding: 20px;
            border-left: 4px solid var(--primary-color);
        }
        
        .cookie-type h4 {
            font-size: 1.2rem;
            color: var(--secondary-color);
            margin-bottom: 10px;
            text-transform: uppercase;
        }
        
        .cookie-type p {
            margin-bottom: 0;
            font-size: 0.95rem;
        }
        
        /* Footer */
        footer {
            background-color: var(--secondary-color);
            color: var(--light-color);
            padding: 70px 0 20px;
        }
        
        .footer-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 50px;
        }
        
        .footer-col h3 {
            font-size: 1.5rem;
            margin-bottom: 20px;
            position: relative;
            padding-bottom: 10px;
            text-transform: uppercase;
        }
        
        .footer-col h3::after {
            content: '';
            position: absolute;
            width: 50px;
            height: 2px;
            background-color: var(--primary-color);
            bottom: 0;
            left: 0;
        }
        
        .footer-col p {
            margin-bottom: 15px;
            opacity: 0.8;
        }
        
        .footer-col ul {
            list-style: none;
        }
        
        .footer-col ul li {
            margin-bottom: 10px;
        }
        
        .footer-col ul li a {
            color: var(--light-color);
            text-decoration: none;
            opacity: 0.8;
            transition: var(--transition);
        }
        
        .footer-col ul li a:hover {
            opacity: 1;
            color: var(--accent-color);
            padding-left: 5px;
        }
        
        .footer-bottom {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            font-size: 0.9rem;
            opacity: 0.8;
        }
        
        /* Responsive */
        @media (max-width: 768px) {
            .hamburger {
                display: flex;
            }
            
            nav ul {
                position: fixed;
                top: 70px;
                left: 0;
                width: 100%;
                background-color: var(--secondary-color);
                flex-direction: column;
                align-items: center;
                padding: 20px 0;
                transform: translateY(-150%);
                transition: transform 0.3s ease;
                box-shadow: 0 5px 10px rgba(0, 0, 0, 0.3);
            }
            
            nav ul.active {
                transform: translateY(0);
            }
            
            nav ul li {
                margin: 10px 0;
            }
            
            .page-title h1 {
                font-size: 2rem;
            }
            
            .cookie-content {
                padding: 20px;
            }
        }

