* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        :root {
            --primary: #6B4423;
            --secondary: #9C6644;
            --tertiary: #B08968;
            --dark: #3C2415;
            --light: #EDE0D4;
            --accent: #7D5A50;
            --gold: #D4AF37;
        }
        
        body {
            font-family: 'Georgia', serif;
            color: var(--dark);
            background-color: var(--light);
            line-height: 1.6;
        }
        
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        /* Header Styles */
        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            background: rgba(237, 224, 212, 0.95);
            backdrop-filter: blur(10px);
            z-index: 1000;
            padding: 15px 0;
            box-shadow: 0 4px 20px rgba(60, 36, 21, 0.2);
            border-bottom: 2px solid var(--gold);
        }
        
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .logo {
            font-size: 32px;
            font-weight: bold;
            color: var(--primary);
            text-decoration: none;
            font-family: 'Playfair Display', serif;
            text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
            position: relative;
            padding-bottom: 5px;
        }
        
        .logo::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 2px;
            background: linear-gradient(90deg, var(--gold), transparent);
        }
        
        .nav-menu {
            display: flex;
            list-style: none;
        }
        
        .nav-menu li {
            margin-left: 30px;
            position: relative;
        }
        
        .nav-menu a {
            color: var(--dark);
            text-decoration: none;
            font-weight: 500;
            font-size: 16px;
            transition: all 0.3s ease;
            position: relative;
            padding: 5px 0;
        }
        
        .nav-menu a::before {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 1px;
            background: var(--gold);
            transition: width 0.3s ease;
        }
        
        .nav-menu a:hover::before {
            width: 100%;
        }
        
        .nav-menu a:hover {
            color: var(--primary);
        }
        
        .burger {
            display: none;
            cursor: pointer;
            flex-direction: column;
            justify-content: space-between;
            width: 30px;
            height: 21px;
        }
        
        .burger span {
            display: block;
            height: 3px;
            width: 100%;
            background-color: var(--dark);
            border-radius: 3px;
            transition: all 0.3s ease;
        }
        
        /* Main Content */
        main {
            padding-top: 100px;
            min-height: 100vh;
            background: var(--light);
            position: relative;
        }
        
        main::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 10px;
            background: repeating-linear-gradient(45deg, var(--gold), var(--gold) 10px, var(--secondary) 10px, var(--secondary) 20px);
        }
        
        .cookie-content {
            padding: 50px 0;
        }
        
        .page-title {
            font-size: 2.5rem;
            text-align: center;
            margin-bottom: 50px;
            color: var(--primary);
            font-family: 'Playfair Display', serif;
            position: relative;
            display: inline-block;
            width: 100%;
        }
        
        .page-title::before, .page-title::after {
            content: '❦';
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            color: var(--gold);
            font-size: 1.5rem;
        }
        
        .page-title::before {
            left: calc(50% - 150px);
        }
        
        .page-title::after {
            right: calc(50% - 150px);
        }
        
        .cookie-section {
            margin-bottom: 40px;
            background: linear-gradient(to bottom, #F7F1EB, var(--light));
            border: 1px solid var(--secondary);
            padding: 30px;
            position: relative;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }
        
        .cookie-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: var(--gold);
        }
        
        .cookie-section h2 {
            font-size: 1.8rem;
            margin-bottom: 20px;
            color: var(--tertiary);
            font-family: 'Playfair Display', serif;
            position: relative;
            display: inline-block;
        }
        
        .cookie-section h2::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 100%;
            height: 1px;
            background: var(--gold);
        }
        
        .cookie-section h3 {
            font-size: 1.4rem;
            margin: 20px 0 10px;
            color: var(--primary);
            font-family: 'Playfair Display', serif;
            position: relative;
            display: inline-block;
        }
        
        .cookie-section h3::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 100%;
            height: 1px;
            background: var(--gold);
        }
        
        .cookie-section p {
            margin-bottom: 15px;
        }
        
        .cookie-section ul {
            margin-left: 20px;
            margin-bottom: 15px;
        }
        
        .cookie-section li {
            margin-bottom: 10px;
            position: relative;
            padding-left: 25px;
        }
        
        .cookie-section li::before {
            content: '❦';
            position: absolute;
            left: 0;
            top: 2px;
            color: var(--gold);
            font-size: 1rem;
        }
        
        .cookie-types {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 20px;
            margin-top: 30px;
        }
        
        .cookie-type {
            background: var(--light);
            border: 1px solid var(--secondary);
            padding: 20px;
            position: relative;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }
        
        .cookie-type::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: var(--gold);
        }
        
        .cookie-type h4 {
            font-size: 1.2rem;
            margin-bottom: 15px;
            color: var(--primary);
            font-family: 'Playfair Display', serif;
            position: relative;
            display: inline-block;
        }
        
        .cookie-type h4::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 100%;
            height: 1px;
            background: var(--gold);
        }
        
        /* Footer */
        footer {
            background: var(--dark);
            padding: 50px 0 20px;
            position: relative;
        }
        
        footer::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: var(--gold);
        }
        
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-bottom: 30px;
        }
        
        .footer-column h3 {
            font-size: 1.3rem;
            margin-bottom: 20px;
            color: var(--gold);
            font-family: 'Playfair Display', serif;
            position: relative;
            display: inline-block;
        }
        
        .footer-column h3::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 100%;
            height: 1px;
            background: var(--gold);
        }
        
        .footer-column ul {
            list-style: none;
        }
        
        .footer-column ul li {
            margin-bottom: 10px;
            position: relative;
            padding-left: 20px;
        }
        
        .footer-column ul li::before {
            content: '❦';
            position: absolute;
            left: 0;
            top: 2px;
            color: var(--gold);
            font-size: 0.9rem;
        }
        
        .footer-column ul li a {
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            transition: all 0.3s ease;
        }
        
        .footer-column ul li a:hover {
            color: var(--gold);
        }
        
        .footer-contact p {
            margin-bottom: 10px;
            color: rgba(255, 255, 255, 0.7);
            position: relative;
            padding-left: 25px;
        }
        
        .footer-contact p::before {
            content: '❦';
            position: absolute;
            left: 0;
            top: 2px;
            color: var(--gold);
            font-size: 0.9rem;
        }
        
        .footer-bottom {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid rgba(212, 175, 55, 0.3);
            color: rgba(255, 255, 255, 0.5);
            font-size: 0.9rem;
        }
        
        /* Responsive */
        @media (max-width: 768px) {
            .nav-menu {
                position: fixed;
                top: 0;
                right: -100%;
                width: 70%;
                height: 100vh;
                background: var(--light);
                flex-direction: column;
                justify-content: center;
                align-items: center;
                transition: right 0.5s ease;
                box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
            }
            
            .nav-menu.active {
                right: 0;
            }
            
            .nav-menu li {
                margin: 15px 0;
            }
            
            .burger {
                display: flex;
                z-index: 1001;
            }
            
            .burger.active span:nth-child(1) {
                transform: rotate(45deg) translate(5px, 5px);
            }
            
            .burger.active span:nth-child(2) {
                opacity: 0;
            }
            
            .burger.active span:nth-child(3) {
                transform: rotate(-45deg) translate(7px, -6px);
            }
            
            .page-title {
                font-size: 2rem;
            }
            
            .page-title::before, .page-title::after {
                display: none;
            }
        }

