* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Georgia', serif;
        }

        :root {
            --primary-color: #d4af37;
            --secondary-color: #2c1810;
            --accent-color: #8b0000;
            --text-color: #f5f5dc;
            --background-color: #0a0a0a;
            --card-color: #1a1a1a;
        }

        body {
            background-color: var(--background-color);
            color: var(--text-color);
            line-height: 1.6;
            background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><rect width="100" height="100" fill="%230a0a0a"/><path d="M0,0 L100,100 M100,0 L0,100" stroke="%231a1a1a" stroke-width="0.5"/></svg>');
        }

        /* Header Styles */
        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            background-color: rgba(10, 10, 10, 0.9);
            backdrop-filter: blur(10px);
            z-index: 1000;
            padding: 15px 0;
            box-shadow: 0 2px 10px rgba(212, 175, 55, 0.3);
            border-bottom: 1px solid var(--primary-color);
        }

        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .logo {
            font-size: 28px;
            font-weight: bold;
            color: var(--primary-color);
            text-decoration: none;
            text-transform: uppercase;
            letter-spacing: 2px;
            font-family: 'Georgia', serif;
            text-shadow: 0 0 5px rgba(212, 175, 55, 0.5);
        }

        .nav-links {
            display: flex;
            list-style: none;
        }

        .nav-links li {
            margin-left: 30px;
        }

        .nav-links a {
            color: var(--text-color);
            text-decoration: none;
            font-size: 16px;
            transition: all 0.3s ease;
            position: relative;
            font-family: 'Georgia', serif;
        }

        .nav-links a:hover {
            color: var(--primary-color);
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            width: 0;
            height: 1px;
            bottom: -5px;
            left: 0;
            background-color: var(--accent-color);
            transition: width 0.3s ease;
        }

        .nav-links a:hover::after {
            width: 100%;
        }

        .burger {
            display: none;
            cursor: pointer;
        }

        .burger div {
            width: 25px;
            height: 3px;
            background-color: var(--text-color);
            margin: 5px 0;
            transition: all 0.3s ease;
        }

        /* Main Content */
        main {
            padding-top: 100px;
            min-height: 100vh;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 40px 20px;
        }

        .page-title {
            text-align: center;
            margin-bottom: 50px;
        }

        .page-title h1 {
            font-size: 40px;
            margin-bottom: 20px;
            color: var(--primary-color);
            text-transform: uppercase;
            letter-spacing: 2px;
            font-family: 'Georgia', serif;
        }

        .page-title p {
            font-size: 18px;
            max-width: 800px;
            margin: 0 auto;
            font-family: 'Georgia', serif;
            font-style: italic;
        }

        .cookie-content {
            background-color: var(--card-color);
            border-radius: 0;
            padding: 40px;
            box-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
            border: 1px solid var(--primary-color);
        }

        .cookie-section {
            margin-bottom: 40px;
        }

        .cookie-section:last-child {
            margin-bottom: 0;
        }

        .cookie-section h2 {
            font-size: 28px;
            margin-bottom: 20px;
            color: var(--primary-color);
            font-family: 'Georgia', serif;
        }

        .cookie-section h3 {
            font-size: 22px;
            margin: 25px 0 15px;
            color: var(--accent-color);
            font-family: 'Georgia', serif;
        }

        .cookie-section p {
            margin-bottom: 15px;
            font-family: 'Georgia', serif;
        }

        .cookie-section ul {
            margin-left: 20px;
            margin-bottom: 15px;
        }

        .cookie-section 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: rgba(212, 175, 55, 0.1);
            border-radius: 0;
            padding: 20px;
            border-left: 4px solid var(--primary-color);
        }

        .cookie-type h3 {
            margin-top: 0;
            color: var(--primary-color);
            font-family: 'Georgia', serif;
        }

        .cookie-type p {
            margin-bottom: 0;
            font-family: 'Georgia', serif;
        }

        /* Footer */
        footer {
            background-color: var(--secondary-color);
            padding: 50px 0 30px;
            border-top: 1px solid var(--primary-color);
        }

        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
        }

        .footer-column h3 {
            font-size: 20px;
            margin-bottom: 20px;
            color: var(--primary-color);
            font-family: 'Georgia', serif;
        }

        .footer-column ul {
            list-style: none;
        }

        .footer-column ul li {
            margin-bottom: 10px;
        }

        .footer-column ul li a {
            color: var(--text-color);
            text-decoration: none;
            transition: color 0.3s ease;
            font-family: 'Georgia', serif;
        }

        .footer-column ul li a:hover {
            color: var(--primary-color);
        }

        .footer-column p {
            margin-bottom: 10px;
            line-height: 1.6;
            font-family: 'Georgia', serif;
        }

        .footer-bottom {
            max-width: 1200px;
            margin: 40px auto 0;
            padding: 20px;
            border-top: 1px solid rgba(212, 175, 55, 0.3);
            text-align: center;
        }

        .footer-bottom p {
            font-size: 14px;
            color: rgba(245, 245, 220, 0.7);
            font-family: 'Georgia', serif;
        }

        /* Responsive Styles */
        @media (max-width: 768px) {
            .nav-links {
                position: absolute;
                top: 70px;
                left: 0;
                width: 100%;
                background-color: rgba(10, 10, 10, 0.95);
                flex-direction: column;
                align-items: center;
                padding: 20px 0;
                transform: translateY(-150%);
                transition: transform 0.5s ease;
                border: 1px solid var(--primary-color);
            }

            .nav-links.active {
                transform: translateY(0);
            }

            .nav-links li {
                margin: 10px 0;
            }

            .burger {
                display: block;
            }

            .burger.active div:nth-child(1) {
                transform: rotate(-45deg) translate(-5px, 6px);
            }

            .burger.active div:nth-child(2) {
                opacity: 0;
            }

            .burger.active div:nth-child(3) {
                transform: rotate(45deg) translate(-5px, -6px);
            }

            .page-title h1 {
                font-size: 32px;
            }

            .cookie-content {
                padding: 20px;
            }
        }

