:root {
            --color-primary: #1a424e;
            --color-secondary: #ff844f;
            --color-accent: #f8c291;
            --color-text: #e8e8e8;
            --color-bg: #0d1b2a;
            --font-main: 'Arial', sans-serif;
            --font-retro: 'Courier New', monospace;
        }

        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: var(--font-main);
            background-color: var(--color-bg);
            color: var(--color-text);
            line-height: 1.6;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
            overflow-x: hidden;
        }

        h1, h2, h3 {
            font-family: var(--font-retro);
            color: var(--color-accent);
            text-transform: uppercase;
        }

        h1 {
            font-size: clamp(2.5rem, 5vw, 4rem);
            letter-spacing: 2px;
        }

        h2 {
            font-size: clamp(2rem, 4vw, 3.5rem);
            letter-spacing: 1.5px;
            margin-bottom: 2rem;
            text-align: center;
        }

        h3 {
            font-size: clamp(1.5rem, 3vw, 2.5rem);
            margin-bottom: 1rem;
        }

        a {
            color: var(--color-secondary);
            text-decoration: none;
            transition: color 0.3s ease;
        }

        a:hover {
            color: var(--color-accent);
        }

        section {
            padding: 80px 5%;
            position: relative;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
        }

        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            background-color: rgba(13, 27, 42, 0.9);
            backdrop-filter: blur(10px);
            z-index: 1000;
            padding: 1rem 5%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            border-bottom: 1px solid var(--color-primary);
        }

        .logo {
            font-family: var(--font-retro);
            font-size: 1.5rem;
            color: var(--color-accent);
            text-transform: uppercase;
        }

        .nav-links {
            list-style: none;
            display: flex;
            gap: 2rem;
        }

        .nav-links a {
            font-family: var(--font-retro);
            font-size: 1.1rem;
        }

        .burger-menu {
            display: none;
            flex-direction: column;
            cursor: pointer;
            gap: 5px;
        }

        .burger-menu span {
            width: 30px;
            height: 3px;
            background-color: var(--color-accent);
            transition: all 0.3s ease;
        }

        @media (max-width: 768px) {
            .nav-links {
                position: fixed;
                top: 0;
                right: -100%;
                height: 100vh;
                width: 70%;
                background-color: rgba(13, 27, 42, 0.95);
                backdrop-filter: blur(10px);
                flex-direction: column;
                justify-content: center;
                align-items: center;
                gap: 3rem;
                transition: right 0.5s ease-in-out;
            }

            .nav-links.active {
                right: 0;
            }

            .burger-menu {
                display: flex;
            }
        }
        
        .policy-section {
            padding-top: 100px;
        }

        .policy-section h2 {
            text-align: left;
        }

        .policy-section ol {
            padding-left: 20px;
        }

        .policy-section li {
            margin-bottom: 1rem;
        }
        
        .contact-form-popup, .cookie-banner {
            position: fixed;
            background-color: var(--color-primary);
            color: var(--color-text);
            padding: 2rem;
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
            z-index: 2000;
            border: 2px solid var(--color-secondary);
            display: none;
            transition: transform 0.3s ease, opacity 0.3s ease;
        }
        
        .contact-form-popup {
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 90%;
            max-width: 500px;
        }

        .contact-form-popup.active {
            display: block;
        }

        .contact-form-popup h3 {
            margin-bottom: 1.5rem;
        }

        .contact-form-popup form {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }

        .contact-form-popup input {
            padding: 10px;
            border: 1px solid var(--color-secondary);
            background-color: var(--color-bg);
            color: var(--color-text);
            border-radius: 5px;
        }

        .contact-form-popup button {
            background-color: var(--color-secondary);
            color: var(--color-bg);
            border: none;
            padding: 12px;
            text-transform: uppercase;
            font-weight: bold;
            cursor: pointer;
            border-radius: 5px;
        }
        
        .cookie-banner {
            bottom: 20px;
            right: 20px;
            width: 90%;
            max-width: 400px;
        }

        .cookie-banner.active {
            display: block;
        }

        .cookie-banner p {
            margin-bottom: 1rem;
        }

        .cookie-banner button {
            background-color: var(--color-secondary);
            color: var(--color-bg);
            border: none;
            padding: 10px 20px;
            cursor: pointer;
            border-radius: 5px;
        }

        .close-popup {
            position: absolute;
            top: 10px;
            right: 10px;
            font-size: 2rem;
            color: var(--color-accent);
            cursor: pointer;
        }

        .disclaimer {
            background-color: var(--color-primary);
            padding: 1rem 5%;
            font-size: 0.8rem;
            text-align: center;
            color: #8c9fae;
            border-top: 1px solid var(--color-secondary);
        }

        .footer {
            background-color: var(--color-bg);
            padding: 40px 5%;
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 20px;
        }

        .footer h3 {
            color: var(--color-accent);
            margin-bottom: 1rem;
        }

        .footer .footer-section {
            flex-basis: 250px;
        }

        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 0.5rem;
        }

