:root {
            --primary-color: #00FFC2;
            --secondary-color: #2F3E46;
            --text-color: #E6E6E6;
            --background-color: #1A1A1A;
            --accent-color: #FF6B6B;
            --font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }

        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        body {
            background-color: var(--background-color);
            color: var(--text-color);
            font-family: var(--font-family);
            line-height: 1.6;
            padding-top: 80px;
        }

        header {
            position: fixed;
            width: 100%;
            top: 0;
            left: 0;
            background-color: rgba(26, 26, 26, 0.9);
            backdrop-filter: blur(5px);
            z-index: 1000;
            padding: 1rem 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
        }

        .logo {
            font-size: 1.8rem;
            font-weight: bold;
            color: var(--primary-color);
            text-decoration: none;
            letter-spacing: 2px;
        }

        .nav-menu {
            display: flex;
            gap: 2rem;
        }

        .nav-menu a {
            color: var(--text-color);
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s ease;
        }

        .nav-menu a:hover {
            color: var(--primary-color);
        }

        .burger-menu {
            display: none;
            cursor: pointer;
            flex-direction: column;
            gap: 5px;
        }

        .burger-menu div {
            width: 25px;
            height: 3px;
            background-color: var(--primary-color);
            transition: all 0.3s ease-in-out;
        }

        .nav-menu.active {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            background-color: rgba(26, 26, 26, 0.95);
            padding: 1.5rem 2rem;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
        }

        main {
            padding: 5rem 10%;
            max-width: 900px;
            margin: 0 auto;
        }
        
        h1, h2, h3 {
            color: var(--primary-color);
            margin-bottom: 1rem;
        }
        
        h1 {
            font-size: 2.5rem;
            text-align: center;
            margin-bottom: 2rem;
        }
        
        h2 {
            font-size: 1.8rem;
            margin-top: 2rem;
        }
        
        p, ul {
            margin-bottom: 1.5rem;
        }
        
        ul {
            padding-left: 20px;
        }
        
        a {
            color: var(--primary-color);
            text-decoration: none;
        }
        
        a:hover {
            text-decoration: underline;
        }

        footer {
            background-color: var(--secondary-color);
            color: var(--text-color);
            padding: 3rem 10%;
            text-align: center;
        }

        .footer-content {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            flex-wrap: wrap;
            gap: 2rem;
            text-align: left;
        }

        .footer-section {
            flex: 1;
            min-width: 200px;
        }

        .footer-section h4 {
            font-size: 1.2rem;
            margin-bottom: 1rem;
            color: var(--primary-color);
        }

        .footer-section a, .footer-section p {
            color: var(--text-color);
            text-decoration: none;
            display: block;
            margin-bottom: 0.5rem;
        }
        
        .cookie-banner {
            position: fixed;
            bottom: 20px;
            left: 20px;
            background-color: var(--secondary-color);
            padding: 1.5rem;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
            max-width: 400px;
            display: flex;
            flex-direction: column;
            gap: 1rem;
            z-index: 2000;
        }
        
        .cookie-banner p {
            font-size: 0.9rem;
        }

        .cookie-banner a {
            color: var(--primary-color);
            text-decoration: none;
        }

        .cookie-banner button {
            background-color: var(--primary-color);
            color: var(--background-color);
            border: none;
            padding: 0.8rem 1.5rem;
            border-radius: 5px;
            cursor: pointer;
            font-weight: bold;
        }

        @media (max-width: 768px) {
            .nav-menu {
                display: none;
            }
        
            .burger-menu {
                display: flex;
            }
            
            .footer-content {
                flex-direction: column;
            }
        }

