:root {
            --primary-color: #0A192F;
            --secondary-color: #64FFDA;
            --accent-color: #233554;
            --text-color: #8892B0;
            --white-color: #CCD6F6;
            --font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            --transition-duration: 0.3s;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: var(--font-family);
            background-color: var(--primary-color);
            color: var(--text-color);
            line-height: 1.6;
        }

        a {
            text-decoration: none;
            color: var(--secondary-color);
            transition: color var(--transition-duration);
        }

        a:hover {
            color: var(--white-color);
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            background-color: var(--primary-color);
            z-index: 1000;
            padding: 20px 0;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
        }

        .nav-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-size: 1.8rem;
            font-weight: bold;
            color: var(--secondary-color);
        }

        .nav-links {
            list-style: none;
            display: flex;
            gap: 20px;
        }

        .nav-links a {
            color: var(--white-color);
            font-weight: 500;
        }

        .burger-menu {
            display: none;
            cursor: pointer;
            flex-direction: column;
            gap: 5px;
        }

        .burger-menu span {
            width: 25px;
            height: 3px;
            background-color: var(--secondary-color);
            transition: transform var(--transition-duration);
        }

        @media (max-width: 768px) {
            .nav-links {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 80px;
                left: 0;
                width: 100%;
                background-color: var(--primary-color);
                text-align: center;
                padding: 20px 0;
                box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
            }

            .nav-links.active {
                display: flex;
            }

            .nav-links a {
                padding: 10px 0;
            }

            .burger-menu {
                display: flex;
            }
        }
        
        main {
            padding-top: 120px;
            padding-bottom: 80px;
        }
        
        h1 {
            font-size: 2.5rem;
            color: var(--white-color);
            margin-bottom: 20px;
            text-align: center;
        }

        h2 {
            font-size: 1.8rem;
            color: var(--secondary-color);
            margin-top: 30px;
            margin-bottom: 15px;
        }
        
        p, ul {
            margin-bottom: 20px;
        }

        ul {
            padding-left: 20px;
            list-style-type: disc;
        }
        
        ol {
            padding-left: 20px;
            margin-bottom: 20px;
        }
        
        ol li {
            margin-bottom: 10px;
        }

        footer {
            background-color: var(--accent-color);
            padding: 40px 0 20px;
            text-align: center;
            color: var(--text-color);
        }

        .footer-links {
            display: flex;
            justify-content: center;
            gap: 20px;
            list-style: none;
            margin-bottom: 20px;
        }

        .footer-links a {
            color: var(--white-color);
        }
        
        .footer-bottom {
            margin-top: 20px;
            font-size: 0.9rem;
        }
        
        .cookie-banner {
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            background-color: rgba(0, 0, 0, 0.8);
            color: var(--white-color);
            padding: 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            z-index: 10000;
        }

        .cookie-banner p {
            flex: 1;
            margin-right: 20px;
        }

        .cookie-banner button {
            background-color: var(--secondary-color);
            border: none;
            padding: 10px 20px;
            border-radius: 5px;
            cursor: pointer;
            font-weight: bold;
        }

