:root {
            --primary: #FF5E7D;
            --secondary: #47B8E0;
            --accent: #FFD166;
            --dark: #1A1A2E;
            --light: #F9F9F9;
            --retro-font: 'Courier New', monospace;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: var(--retro-font);
        }
        
        body {
            background-color: var(--dark);
            color: var(--light);
            line-height: 1.6;
            padding-top: 80px;
            background-image: url('https://images.unsplash.com/photo-1571902943202-507ec2618e8f?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80');
            background-attachment: fixed;
            background-size: cover;
            background-position: center;
            background-blend-mode: overlay;
        }
        
        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            background-color: rgba(26, 26, 46, 0.9);
            padding: 1rem 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            z-index: 1000;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
            border-bottom: 2px solid var(--primary);
        }
        
        .logo {
            color: var(--primary);
            font-size: 1.8rem;
            font-weight: bold;
            text-decoration: none;
            letter-spacing: 2px;
            display: flex;
            align-items: center;
        }
        
        .logo span {
            color: var(--accent);
        }
        
        nav ul {
            display: flex;
            list-style: none;
        }
        
        nav ul li {
            margin-left: 1.5rem;
        }
        
        nav ul li a {
            color: var(--light);
            text-decoration: none;
            font-size: 1.1rem;
            transition: color 0.3s;
            padding: 0.5rem 1rem;
            border-radius: 4px;
        }
        
        nav ul li a:hover {
            color: var(--primary);
            background-color: rgba(255, 94, 125, 0.1);
        }
        
        .burger {
            display: none;
            cursor: pointer;
        }
        
        .burger div {
            width: 25px;
            height: 3px;
            background-color: var(--light);
            margin: 5px;
            transition: all 0.3s ease;
        }
        
        section {
            padding: 5rem 2rem;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }
        
        .section-title {
            font-size: 2.5rem;
            margin-bottom: 2rem;
            color: var(--primary);
            text-align: center;
            position: relative;
            padding-bottom: 1rem;
        }
        
        .section-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 3px;
            background-color: var(--accent);
        }
        
        .policy-content {
            max-width: 900px;
            margin: 0 auto;
        }
        
        .policy-content h2 {
            font-size: 1.8rem;
            margin: 2rem 0 1rem;
            color: var(--accent);
        }
        
        .policy-content h3 {
            font-size: 1.4rem;
            margin: 1.5rem 0 0.8rem;
            color: var(--secondary);
        }
        
        .policy-content p, 
        .policy-content ul {
            margin-bottom: 1.2rem;
            font-size: 1.1rem;
        }
        
        .policy-content ul {
            padding-left: 2rem;
        }
        
        .policy-content li {
            margin-bottom: 0.5rem;
        }
        
        footer {
            background-color: rgba(26, 26, 46, 0.95);
            padding: 3rem 2rem;
            color: var(--light);
            border-top: 2px solid var(--primary);
        }
        
        .footer-content {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 2rem;
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .footer-column {
            flex: 1;
            min-width: 200px;
        }
        
        .footer-column h3 {
            color: var(--accent);
            margin-bottom: 1.5rem;
            font-size: 1.3rem;
        }
        
        .footer-links {
            list-style: none;
        }
        
        .footer-links li {
            margin-bottom: 0.8rem;
        }
        
        .footer-links a {
            color: var(--light);
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .footer-links a:hover {
            color: var(--primary);
        }
        
        .contact-info {
            list-style: none;
        }
        
        .contact-info li {
            margin-bottom: 1rem;
            display: flex;
            align-items: center;
        }
        
        .contact-info i {
            margin-right: 0.8rem;
            color: var(--primary);
        }
        
        .copyright {
            text-align: center;
            margin-top: 3rem;
            padding-top: 1.5rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            font-size: 0.9rem;
            opacity: 0.7;
        }
        
        .cookie-banner {
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            background-color: rgba(26, 26, 46, 0.95);
            padding: 1.5rem;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
            z-index: 1000;
            box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.3);
            border-top: 2px solid var(--accent);
            transform: translateY(100%);
            transition: transform 0.5s ease-in-out;
        }
        
        .cookie-banner.show {
            transform: translateY(0);
        }
        
        .cookie-text {
            flex: 1;
            min-width: 250px;
            margin-right: 1rem;
            margin-bottom: 1rem;
        }
        
        .cookie-actions {
            display: flex;
            gap: 1rem;
        }
        
        .cookie-btn {
            padding: 0.5rem 1.5rem;
            border-radius: 50px;
            cursor: pointer;
            font-weight: bold;
            transition: all 0.3s;
        }
        
        .cookie-accept {
            background-color: var(--accent);
            color: var(--dark);
            border: none;
        }
        
        .cookie-accept:hover {
            background-color: #ffc233;
        }
        
        .cookie-decline {
            background-color: transparent;
            border: 1px solid var(--light);
            color: var(--light);
        }
        
        .cookie-decline:hover {
            background-color: rgba(255, 255, 255, 0.1);
        }
        
        @media (max-width: 768px) {
            nav {
                position: fixed;
                top: 80px;
                left: 0;
                width: 100%;
                background-color: rgba(26, 26, 46, 0.95);
                padding: 1rem;
                transform: translateY(-150%);
                transition: transform 0.5s ease-in-out;
                z-index: 999;
                box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
            }
            
            nav.active {
                transform: translateY(0);
            }
            
            nav ul {
                flex-direction: column;
            }
            
            nav ul li {
                margin: 0.5rem 0;
            }
            
            .burger {
                display: block;
            }
            
            .section-title {
                font-size: 2rem;
            }
            
            .cookie-actions {
                width: 100%;
                justify-content: center;
            }
            
            .cookie-btn {
                width: 100%;
            }
        }
        
        @media (max-width: 480px) {
            .section-title {
                font-size: 1.8rem;
            }
            
            .footer-column {
                min-width: 100%;
            }
        }

@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;600;700&family=Playfair+Display:wght@400;700&display=swap');

        :root {
            --color-primary: #8e7dbe;
            --color-secondary: #e6e3e9;
            --color-accent: #f0c5a3;
            --color-dark: #2c253f;
            --color-light: #ffffff;
            --font-main: 'Open Sans', sans-serif;
            --font-heading: 'Playfair Display', serif;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: var(--font-main);
            color: var(--color-dark);
            background-color: var(--color-light);
            line-height: 1.6;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        header {
            background-color: var(--color-light);
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1000;
        }

        .navbar {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1rem 2rem;
        }

        .logo {
            font-family: var(--font-heading);
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--color-primary);
            text-decoration: none;
        }

        .nav-links {
            list-style: none;
            display: flex;
        }

        .nav-links a {
            color: var(--color-dark);
            text-decoration: none;
            font-weight: 600;
            padding: 0.5rem 1rem;
            position: relative;
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            background-color: var(--color-primary);
            bottom: -5px;
            left: 50%;
            transform: translateX(-50%);
            transition: width 0.3s ease;
        }

        .nav-links a:hover::after {
            width: 100%;
        }

        .burger-menu {
            display: none;
            cursor: pointer;
            flex-direction: column;
            gap: 5px;
        }

        .burger-menu span {
            display: block;
            width: 25px;
            height: 3px;
            background-color: var(--color-dark);
            transition: all 0.3s ease;
        }

        .nav-links.active {
            transform: translateX(0);
        }

        .burger-menu.active span:nth-child(1) {
            transform: translateY(8px) rotate(45deg);
        }

        .burger-menu.active span:nth-child(2) {
            opacity: 0;
        }

        .burger-menu.active span:nth-child(3) {
            transform: translateY(-8px) rotate(-45deg);
        }
        
        main {
            padding-top: 80px;
            padding-bottom: 40px;
        }

        .policy-content {
            padding: 40px 0;
        }

        .policy-content h1 {
            font-family: var(--font-heading);
            font-size: 3rem;
            margin-bottom: 20px;
            text-align: center;
        }

        .policy-content h2 {
            font-family: var(--font-heading);
            font-size: 1.8rem;
            margin-top: 40px;
            margin-bottom: 15px;
        }

        .policy-content p, .policy-content li {
            font-size: 1rem;
            margin-bottom: 10px;
        }

        .policy-content ul {
            padding-left: 20px;
            margin-bottom: 20px;
        }

        .disclaimer {
            background-color: var(--color-dark);
            color: var(--color-secondary);
            padding: 20px;
            text-align: center;
            font-size: 0.9rem;
        }

        .disclaimer a {
            color: var(--color-accent);
            text-decoration: none;
        }

        .disclaimer a:hover {
            text-decoration: underline;
        }

        footer {
            background-color: var(--color-dark);
            color: var(--color-light);
            padding: 40px 0;
        }

        .footer-content {
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 20px;
        }

        .footer-section {
            flex: 1;
            min-width: 250px;
        }

        .footer-section h3 {
            color: var(--color-accent);
            margin-bottom: 20px;
        }

        .footer-section p, .footer-section a {
            color: var(--color-secondary);
            text-decoration: none;
        }

        .footer-section a:hover {
            text-decoration: underline;
        }

        .footer-links ul {
            list-style: none;
        }

        .footer-links ul li {
            margin-bottom: 10px;
        }

        .footer-bottom {
            text-align: center;
            margin-top: 30px;
            padding-top: 20px;
            border-top: 1px solid var(--color-secondary);
        }

        @media (max-width: 768px) {
            .navbar {
                padding: 1rem 1.5rem;
            }

            .nav-links {
                position: fixed;
                top: 80px;
                left: 0;
                width: 100%;
                background-color: var(--color-light);
                flex-direction: column;
                align-items: center;
                gap: 1.5rem;
                padding: 2rem 0;
                transform: translateX(100%);
                transition: transform 0.5s ease;
            }

            .nav-links a {
                font-size: 1.2rem;
            }

            .burger-menu {
                display: flex;
            }
        }

