* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Arial', sans-serif;
            line-height: 1.6;
            color: #fff;
            background-color: #0a0a2e;
            overflow-x: hidden;
        }

        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        h1, h2, h3, h4 {
            margin-bottom: 20px;
            font-weight: bold;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        h1 {
            font-size: 3rem;
            color: #ff00ff;
            text-shadow: 0 0 10px #ff00ff;
        }

        h2 {
            font-size: 2.5rem;
            color: #00ffff;
            text-shadow: 0 0 8px #00ffff;
            text-align: center;
            margin-bottom: 40px;
        }

        h3 {
            font-size: 1.8rem;
            color: #ff00ff;
        }

        h4 {
            font-size: 1.2rem;
            color: #00ffff;
        }

        p {
            margin-bottom: 20px;
            font-size: 1rem;
        }

        a {
            color: #00ffff;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        a:hover {
            color: #ff00ff;
            text-shadow: 0 0 5px #ff00ff;
        }

        .cta-button {
            display: inline-block;
            padding: 12px 30px;
            background: linear-gradient(45deg, #ff00ff, #00ffff);
            color: #fff;
            border: none;
            border-radius: 50px;
            font-weight: bold;
            text-transform: uppercase;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(255, 0, 255, 0.4);
        }

        .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(255, 0, 255, 0.6);
        }

        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            background: rgba(10, 10, 46, 0.9);
            backdrop-filter: blur(10px);
            z-index: 1000;
            padding: 15px 0;
            box-shadow: 0 0 20px rgba(0, 255, 255, 0.3);
        }

        header .container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo a {
            font-size: 1.8rem;
            font-weight: bold;
            color: #ff00ff;
            text-shadow: 0 0 10px #ff00ff;
        }

        .main-nav ul {
            display: flex;
            list-style: none;
        }

        .main-nav ul li {
            margin-left: 30px;
        }

        .main-nav ul li a {
            color: #fff;
            font-weight: bold;
            text-transform: uppercase;
            position: relative;
        }

        .main-nav ul li a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: linear-gradient(90deg, #ff00ff, #00ffff);
            transition: width 0.3s ease;
        }

        .main-nav ul li a:hover::after {
            width: 100%;
        }

        .burger-menu {
            display: none;
            flex-direction: column;
            cursor: pointer;
        }

        .burger-menu span {
            width: 25px;
            height: 3px;
            background: #fff;
            margin: 3px 0;
            transition: 0.3s;
        }

        .hero {
            min-height: 50vh;
            display: flex;
            align-items: center;
            position: relative;
            overflow: hidden;
            padding: 100px 0 50px;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('../img/01.webp') no-repeat center center;
            background-size: cover;
            opacity: 0.3;
            z-index: -1;
            animation: parallax 20s linear infinite;
        }

        @keyframes parallax {
            0% {
                transform: translateX(0) translateY(0);
            }
            100% {
                transform: translateX(-20px) translateY(-20px);
            }
        }

        .hero-content {
            max-width: 800px;
            z-index: 1;
            animation: fadeInLeft 1s ease;
        }

        .hero-content p {
            font-size: 1.2rem;
            margin-bottom: 30px;
        }

        section {
            padding: 80px 0;
            position: relative;
        }

        section:nth-child(even) {
            background: rgba(0, 255, 255, 0.05);
        }

        .privacy-content ul {
            margin-left: 20px;
            margin-bottom: 20px;
        }

        .privacy-content li {
            margin-bottom: 10px;
        }

        footer {
            background: rgba(10, 10, 46, 0.9);
            padding: 50px 0 20px;
            border-top: 1px solid rgba(0, 255, 255, 0.3);
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-bottom: 30px;
        }

        .footer-logo h3 {
            color: #ff00ff;
            text-shadow: 0 0 10px #ff00ff;
        }

        .footer-links h4, .footer-contact h4 {
            color: #00ffff;
            margin-bottom: 20px;
        }

        .footer-links ul {
            list-style: none;
        }

        .footer-links ul li {
            margin-bottom: 10px;
        }

        .footer-contact p {
            margin-bottom: 5px;
        }

        .footer-bottom {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 0, 255, 0.2);
            color: rgba(255, 255, 255, 0.7);
        }

        .cookie-banner {
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            background: rgba(10, 10, 46, 0.95);
            padding: 20px 0;
            z-index: 1000;
            border-top: 1px solid rgba(255, 0, 255, 0.3);
            display: none;
        }

        .cookie-banner .container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .cookie-banner p {
            margin: 0;
            flex: 1;
        }

        .cookie-accept {
            margin-left: 20px;
        }

        @keyframes fadeInLeft {
            from {
                opacity: 0;
                transform: translateX(-50px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @media (max-width: 768px) {
            .main-nav {
                position: fixed;
                top: 70px;
                left: -100%;
                width: 100%;
                height: calc(100vh - 70px);
                background: rgba(10, 10, 46, 0.95);
                flex-direction: column;
                justify-content: flex-start;
                align-items: center;
                padding-top: 50px;
                transition: left 0.3s ease;
            }

            .main-nav.active {
                left: 0;
            }

            .main-nav ul {
                flex-direction: column;
            }

            .main-nav ul li {
                margin: 15px 0;
            }

            .burger-menu {
                display: flex;
            }

            .burger-menu.active span:nth-child(1) {
                transform: rotate(-45deg) translate(-5px, 6px);
            }

            .burger-menu.active span:nth-child(2) {
                opacity: 0;
            }

            .burger-menu.active span:nth-child(3) {
                transform: rotate(45deg) translate(-5px, -6px);
            }

            h1 {
                font-size: 2.5rem;
            }

            h2 {
                font-size: 2rem;
            }

            .cookie-banner .container {
                flex-direction: column;
                text-align: center;
            }

            .cookie-accept {
                margin-left: 0;
                margin-top: 15px;
            }
        }

        @media (max-width: 480px) {
            h1 {
                font-size: 2rem;
            }

            h2 {
                font-size: 1.8rem;
            }
        }

