* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial', sans-serif;
        }

        :root {
            --primary-color: #8B4513;
            --secondary-color: #FFD700;
            --accent-color: #FF6347;
            --dark-color: #1a1a2e;
            --light-color: #f5f5f5;
            --text-color: #f5f5f5;
            --gradient: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
        }

        body {
            background-color: var(--dark-color);
            color: var(--text-color);
            line-height: 1.6;
            overflow-x: hidden;
        }

        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Header Styles */
        header {
            position: fixed;
            top: 0;
            width: 100%;
            background: rgba(26, 26, 46, 0.9);
            backdrop-filter: blur(10px);
            z-index: 1000;
            box-shadow: 0 4px 20px rgba(139, 69, 19, 0.3);
        }

        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 20px;
        }

        .logo {
            font-size: 28px;
            font-weight: bold;
            color: var(--primary-color);
            text-decoration: none;
            text-transform: uppercase;
            letter-spacing: 2px;
            text-shadow: 0 0 10px rgba(139, 69, 19, 0.7);
        }

        .nav-menu {
            display: flex;
            list-style: none;
        }

        .nav-menu li {
            margin-left: 30px;
        }

        .nav-menu a {
            color: var(--light-color);
            text-decoration: none;
            font-size: 16px;
            transition: all 0.3s ease;
            position: relative;
        }

        .nav-menu a:hover {
            color: var(--secondary-color);
            text-shadow: 0 0 5px rgba(255, 215, 0, 0.7);
        }

        .nav-menu a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--gradient);
            transition: width 0.3s ease;
        }

        .nav-menu a:hover::after {
            width: 100%;
        }

        .hamburger {
            display: none;
            flex-direction: column;
            cursor: pointer;
        }

        .hamburger span {
            width: 25px;
            height: 3px;
            background: var(--light-color);
            margin: 3px 0;
            transition: 0.3s;
        }

        /* Main Content */
        main {
            padding-top: 80px;
            min-height: 100vh;
        }

        .cookie-header {
            background: linear-gradient(rgba(26, 26, 46, 0.7), rgba(26, 26, 46, 0.7)), url('../img/15.webp') no-repeat center center/cover;
            padding: 100px 0;
            text-align: center;
        }

        .cookie-header h1 {
            font-size: 3rem;
            color: var(--light-color);
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 20px;
        }

        .cookie-header p {
            font-size: 1.2rem;
            color: var(--secondary-color);
            max-width: 800px;
            margin: 0 auto;
        }

        .cookie-content {
            padding: 60px 0;
            background-color: rgba(255, 255, 255, 0.05);
        }

        .cookie-section {
            margin-bottom: 40px;
        }

        .cookie-section h2 {
            font-size: 1.8rem;
            margin-bottom: 20px;
            color: var(--primary-color);
            position: relative;
            padding-left: 20px;
        }

        .cookie-section h2::before {
            content: '';
            position: absolute;
            left: 0;
            top: 50%;
            transform: translateY(-50%);
            width: 8px;
            height: 100%;
            background: var(--gradient);
            border-radius: 4px;
        }

        .cookie-section h3 {
            font-size: 1.4rem;
            margin: 25px 0 15px;
            color: var(--secondary-color);
        }

        .cookie-section p {
            margin-bottom: 15px;
            color: var(--light-color);
        }

        .cookie-section ul {
            margin-left: 20px;
            margin-bottom: 15px;
            color: var(--light-color);
        }

        .cookie-section li {
            margin-bottom: 10px;
        }

        .cookie-section a {
            color: var(--secondary-color);
            text-decoration: none;
        }

        .cookie-section a:hover {
            text-decoration: underline;
        }

        .cookie-types {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin: 30px 0;
        }

        .cookie-type {
            background: rgba(255, 255, 255, 0.1);
            border-radius: 15px;
            padding: 25px;
            border: 1px solid rgba(139, 69, 19, 0.2);
        }

        .cookie-type h3 {
            color: var(--secondary-color);
            margin-bottom: 15px;
            font-size: 1.3rem;
        }

        .cookie-type p {
            color: var(--light-color);
            margin-bottom: 15px;
        }

        .cookie-examples {
            background: rgba(0, 0, 0, 0.2);
            border-radius: 10px;
            padding: 15px;
            margin-top: 15px;
        }

        .cookie-examples h4 {
            color: var(--primary-color);
            margin-bottom: 10px;
            font-size: 1.1rem;
        }

        .cookie-examples p {
            color: var(--light-color);
            font-size: 0.9rem;
        }

        /* Footer */
        footer {
            background: rgba(26, 26, 46, 0.9);
            padding: 50px 0 20px;
            color: var(--light-color);
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-bottom: 30px;
        }

        .footer-column h3 {
            font-size: 1.5rem;
            margin-bottom: 20px;
            color: var(--primary-color);
        }

        .footer-column ul {
            list-style: none;
        }

        .footer-column ul li {
            margin-bottom: 10px;
        }

        .footer-column ul li a {
            color: var(--light-color);
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-column ul li a:hover {
            color: var(--secondary-color);
        }

        .footer-contact p {
            margin-bottom: 10px;
        }

        .footer-bottom {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            font-size: 0.9rem;
        }

        /* Cookie Banner */
        .cookie-banner {
            position: fixed;
            bottom: 20px;
            left: 20px;
            right: 20px;
            background: rgba(26, 26, 46, 0.95);
            border: 1px solid var(--primary-color);
            border-radius: 10px;
            padding: 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            z-index: 1000;
            box-shadow: 0 5px 15px rgba(139, 69, 19, 0.3);
            transform: translateY(150%);
            transition: transform 0.5s ease;
        }

        .cookie-banner.active {
            transform: translateY(0);
        }

        .cookie-text {
            flex: 1;
            color: var(--light-color);
            margin-right: 20px;
        }

        .cookie-text a {
            color: var(--secondary-color);
            text-decoration: none;
        }

        .cookie-buttons {
            display: flex;
            gap: 10px;
        }

        .cookie-btn {
            padding: 8px 15px;
            border: none;
            border-radius: 5px;
            cursor: pointer;
            font-weight: bold;
            transition: all 0.3s ease;
        }

        .cookie-accept {
            background: var(--gradient);
            color: var(--dark-color);
        }

        .cookie-reject {
            background: transparent;
            color: var(--light-color);
            border: 1px solid var(--light-color);
        }

        .cookie-btn:hover {
            transform: translateY(-2px);
        }

        /* Responsive */
        @media (max-width: 768px) {
            .hamburger {
                display: flex;
            }

            .nav-menu {
                position: fixed;
                left: -100%;
                top: 70px;
                flex-direction: column;
                background: rgba(26, 26, 46, 0.95);
                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: 15px 0;
            }

            .cookie-header h1 {
                font-size: 2rem;
            }

            .cookie-header p {
                font-size: 1rem;
            }
        }

        @media (max-width: 576px) {
            .cookie-banner {
                flex-direction: column;
                text-align: center;
            }

            .cookie-text {
                margin-right: 0;
                margin-bottom: 15px;
            }
        }

