* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Georgia', serif;
            line-height: 1.6;
            color: #333;
            background-color: #f5f2e9;
        }
        
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        .header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            background-color: #4b2e20;
            color: #f5f2e9;
            z-index: 1000;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
            border-bottom: 2px solid #d4af37;
        }
        
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
        }
        
        .logo {
            font-size: 24px;
            font-weight: bold;
            color: #d4af37;
            text-transform: uppercase;
            letter-spacing: 2px;
            font-family: 'Georgia', serif;
            text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
        }
        
        .nav-list {
            display: flex;
            list-style: none;
        }
        
        .nav-list li {
            margin-left: 20px;
        }
        
        .nav-list a {
            color: #f5f2e9;
            text-decoration: none;
            font-size: 16px;
            transition: color 0.3s;
            font-weight: bold;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        .nav-list a:hover {
            color: #d4af37;
        }
        
        .burger {
            display: none;
            cursor: pointer;
        }
        
        .burger span {
            display: block;
            width: 25px;
            height: 3px;
            background-color: #f5f2e9;
            margin: 5px 0;
            transition: all 0.3s;
        }
        
        main {
            padding-top: 100px;
            padding-bottom: 50px;
        }
        
        .cookie-content {
            background-color: #fff;
            border: 1px solid #d4af37;
            border-radius: 0;
            padding: 40px;
            box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
            margin-top: 30px;
            position: relative;
        }
        
        .cookie-content::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: linear-gradient(90deg, #d4af37, #f5f2e9);
        }
        
        h1 {
            color: #4b2e20;
            margin-bottom: 30px;
            font-size: 32px;
            font-weight: bold;
            text-transform: uppercase;
            font-family: 'Georgia', serif;
        }
        
        h2 {
            color: #4b2e20;
            margin: 25px 0 15px;
            font-size: 24px;
            font-weight: bold;
            text-transform: uppercase;
            font-family: 'Georgia', serif;
        }
        
        p {
            margin-bottom: 15px;
            color: #4b2e20;
        }
        
        ul {
            margin-bottom: 20px;
            padding-left: 20px;
        }
        
        li {
            margin-bottom: 10px;
            color: #4b2e20;
        }
        
        .cookie-types {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
            margin: 30px 0;
        }
        
        .cookie-type {
            background-color: #f5f2e9;
            border: 1px solid #d4af37;
            border-radius: 0;
            padding: 20px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        }
        
        .cookie-type h3 {
            color: #4b2e20;
            margin-bottom: 15px;
            font-size: 20px;
            font-weight: bold;
            text-transform: uppercase;
            font-family: 'Georgia', serif;
        }
        
        .footer {
            background-color: #4b2e20;
            color: #f5f2e9;
            padding: 50px 0 20px;
            border-top: 2px solid #d4af37;
        }
        
        .footer-content {
            display: grid;
            grid-template-columns: 1fr 1fr 1fr;
            gap: 30px;
            margin-bottom: 30px;
        }
        
        .footer-logo {
            font-size: 24px;
            font-weight: bold;
            color: #d4af37;
            text-transform: uppercase;
            letter-spacing: 2px;
            font-family: 'Georgia', serif;
        }
        
        .footer-links ul {
            list-style: none;
            padding-left: 0;
        }
        
        .footer-links li {
            margin-bottom: 10px;
        }
        
        .footer-links a {
            color: #f5f2e9;
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .footer-links a:hover {
            color: #d4af37;
        }
        
        .footer-contact p {
            margin-bottom: 10px;
            color: #f5f2e9;
        }
        
        .footer-bottom {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid rgba(245, 242, 233, 0.2);
            color: #f5f2e9;
        }
        
        @media (max-width: 992px) {
            .footer-content {
                grid-template-columns: 1fr;
                text-align: center;
            }
        }
        
        @media (max-width: 768px) {
            .nav-list {
                position: fixed;
                top: 70px;
                left: 0;
                width: 100%;
                background-color: #4b2e20;
                flex-direction: column;
                align-items: center;
                padding: 20px 0;
                transform: translateY(-150%);
                transition: transform 0.3s;
                z-index: 999;
                border-bottom: 2px solid #d4af37;
            }
            
            .nav-list.active {
                transform: translateY(0);
            }
            
            .nav-list li {
                margin: 10px 0;
            }
            
            .burger {
                display: block;
            }
        }

