* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Garamond', 'Times New Roman', serif;
        }
        
        :root {
            --primary: #1a5c1a;
            --secondary: #2d8659;
            --accent: #d4af37;
            --light: #f8f5f0;
            --dark: #121212;
            --text: #333;
            --gold: #d4af37;
        }
        
        body {
            background-color: var(--light);
            color: var(--text);
            line-height: 1.6;
            overflow-x: hidden;
        }
        
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        /* Header Styles */
        header {
            background-color: var(--dark);
            color: var(--light);
            position: fixed;
            width: 100%;
            top: 0;
            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: 28px;
            font-weight: bold;
            letter-spacing: 2px;
            color: var(--gold);
            text-transform: uppercase;
        }
        
        .nav-menu {
            display: flex;
            list-style: none;
        }
        
        .nav-menu li {
            margin-left: 30px;
        }
        
        .nav-menu a {
            color: var(--light);
            text-decoration: none;
            transition: color 0.3s;
            font-weight: 500;
            position: relative;
            padding-bottom: 5px;
        }
        
        .nav-menu a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background-color: var(--gold);
            transition: width 0.3s;
        }
        
        .nav-menu a:hover {
            color: var(--gold);
        }
        
        .nav-menu a:hover::after {
            width: 100%;
        }
        
        .burger {
            display: none;
            cursor: pointer;
        }
        
        .burger span {
            display: block;
            width: 25px;
            height: 3px;
            margin: 5px 0;
            background-color: var(--light);
            transition: all 0.3s ease-in-out;
        }
        
        /* Main Content */
        main {
            padding-top: 100px;
        }
        
        .cookie-container {
            background-color: var(--light);
            border: 2px solid var(--primary);
            padding: 40px;
            margin: 40px 0;
            position: relative;
        }
        
        .cookie-container::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background-color: var(--gold);
        }
        
        .cookie-title {
            font-size: 42px;
            color: var(--primary);
            margin-bottom: 30px;
            text-align: center;
            text-transform: uppercase;
            letter-spacing: 1px;
            position: relative;
            display: inline-block;
            width: 100%;
        }
        
        .cookie-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background-color: var(--gold);
        }
        
        .cookie-section {
            margin-bottom: 40px;
        }
        
        .cookie-section h2 {
            font-size: 28px;
            color: var(--primary);
            margin-bottom: 15px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        .cookie-section h3 {
            font-size: 22px;
            color: var(--secondary);
            margin: 20px 0 10px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        .cookie-section p {
            margin-bottom: 15px;
            font-size: 18px;
        }
        
        .cookie-types {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            margin: 30px 0;
        }
        
        .cookie-type {
            flex: 1;
            min-width: 250px;
            background-color: #f0f0e8;
            padding: 25px;
            border: 2px solid var(--primary);
            border-radius: 0;
            box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
            position: relative;
        }
        
        .cookie-type::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background-color: var(--gold);
        }
        
        .cookie-type h4 {
            color: var(--primary);
            margin-bottom: 15px;
            font-size: 20px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        .cookie-type p {
            font-size: 16px;
            margin-bottom: 0;
        }
        
        .cookie-manage {
            background-color: #f0f0e8;
            padding: 30px;
            border: 2px solid var(--primary);
            border-radius: 0;
            margin-top: 30px;
            position: relative;
        }
        
        .cookie-manage::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background-color: var(--gold);
        }
        
        .cookie-manage h3 {
            color: var(--primary);
            margin-bottom: 15px;
            font-size: 24px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        .cookie-manage p {
            margin-bottom: 20px;
            font-size: 18px;
        }
        
        .cookie-browsers {
            margin-top: 20px;
        }
        
        .cookie-browsers h4 {
            color: var(--secondary);
            margin-bottom: 10px;
            font-size: 20px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        .cookie-browsers ul {
            margin-left: 20px;
        }
        
        .cookie-browsers li {
            margin-bottom: 5px;
            font-size: 16px;
        }
        
        /* Footer */
        footer {
            background-color: var(--primary);
            color: var(--light);
            padding: 50px 0 20px;
        }
        
        .footer-content {
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
            margin-bottom: 30px;
        }
        
        .footer-column {
            flex: 1;
            min-width: 250px;
            margin-bottom: 30px;
            padding-right: 30px;
        }
        
        .footer-column h3 {
            font-size: 22px;
            margin-bottom: 20px;
            color: var(--gold);
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        .footer-links {
            list-style: none;
        }
        
        .footer-links li {
            margin-bottom: 10px;
        }
        
        .footer-links a {
            color: var(--light);
            text-decoration: none;
            transition: color 0.3s;
            position: relative;
            padding-bottom: 3px;
        }
        
        .footer-links a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 1px;
            background-color: var(--gold);
            transition: width 0.3s;
        }
        
        .footer-links a:hover {
            color: var(--gold);
        }
        
        .footer-links a:hover::after {
            width: 100%;
        }
        
        .footer-contact p {
            margin-bottom: 10px;
            font-size: 16px;
        }
        
        .footer-bottom {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.2);
            font-size: 14px;
            opacity: 0.7;
        }
        
        /* Responsive */
        @media (max-width: 768px) {
            .nav-menu {
                position: fixed;
                left: -100%;
                top: 70px;
                flex-direction: column;
                background-color: var(--dark);
                width: 100%;
                text-align: center;
                transition: 0.3s;
                box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
                padding: 20px 0;
            }
            
            .nav-menu.active {
                left: 0;
            }
            
            .nav-menu li {
                margin: 10px 0;
            }
            
            .burger {
                display: block;
            }
            
            .cookie-container {
                padding: 20px;
            }
            
            .cookie-title {
                font-size: 32px;
            }
        }

