:root {
            --primary: #6a00f4;
            --secondary: #00ff88;
            --dark: #0a0a0a;
            --light: #f0f0f0;
            --accent: #ff00ff;
        }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Courier New', monospace;
        }
        body {
            background-color: var(--dark);
            color: var(--light);
            overflow-x: hidden;
        }
        header {
            position: fixed;
            top: 0;
            width: 100%;
            background-color: rgba(10, 10, 10, 0.9);
            z-index: 1000;
            padding: 1rem;
            border-bottom: 1px solid var(--primary);
        }
        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            font-size: 1.5rem;
            font-weight: bold;
            color: var(--secondary);
            text-decoration: none;
        }
        .nav-links {
            display: flex;
            gap: 2rem;
        }
        .nav-links a {
            color: var(--light);
            text-decoration: none;
            transition: color 0.3s;
        }
        .nav-links a:hover {
            color: var(--secondary);
        }
        .burger {
            display: none;
            cursor: pointer;
        }
        .burger div {
            width: 25px;
            height: 3px;
            background-color: var(--light);
            margin: 5px;
            transition: all 0.3s;
        }
        main {
            margin-top: 80px;
        }
        section {
            padding: 4rem 2rem;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }
        .hero {
            background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://images.unsplash.com/photo-1545205597-3d9d02c29597') no-repeat center/cover;
            text-align: center;
        }
        h1 {
            font-size: 3rem;
            margin-bottom: 1rem;
            color: var(--secondary);
        }
        h2 {
            font-size: 2rem;
            margin-bottom: 1.5rem;
            color: var(--primary);
        }
        h3 {
            font-size: 1.5rem;
            margin-bottom: 1rem;
            color: var(--accent);
        }
        p {
            margin-bottom: 1rem;
            line-height: 1.6;
        }
        .btn {
            display: inline-block;
            padding: 0.8rem 1.5rem;
            background-color: var(--primary);
            color: var(--light);
            text-decoration: none;
            border-radius: 5px;
            transition: all 0.3s;
            margin-top: 1rem;
        }
        .btn:hover {
            background-color: var(--secondary);
            color: var(--dark);
        }
        .about, .products, .prices, .gallery, .feedback, .faq {
            background-color: var(--dark);
            border-bottom: 1px solid var(--primary);
        }
        .gallery {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 1rem;
        }
        .gallery img {
            width: 100%;
            height: 300px;
            object-fit: cover;
            transition: transform 0.3s;
        }
        .gallery img:hover {
            transform: scale(1.05);
        }
        .feedback-item {
            background-color: rgba(106, 0, 244, 0.1);
            padding: 1.5rem;
            margin-bottom: 1rem;
            border-left: 3px solid var(--secondary);
        }
        .faq-item {
            margin-bottom: 1rem;
        }
        .faq-question {
            background-color: rgba(0, 255, 136, 0.1);
            padding: 1rem;
            cursor: pointer;
            border-left: 3px solid var(--accent);
        }
        .faq-answer {
            padding: 1rem;
            display: none;
            background-color: rgba(255, 0, 255, 0.1);
        }
        .active .faq-answer {
            display: block;
        }
        form {
            display: flex;
            flex-direction: column;
            gap: 1rem;
            max-width: 500px;
            margin: 0 auto;
        }
        input, textarea {
            padding: 0.8rem;
            background-color: rgba(255, 255, 255, 0.1);
            border: 1px solid var(--primary);
            color: var(--light);
        }
        footer {
            background-color: var(--dark);
            padding: 2rem;
            text-align: center;
            border-top: 1px solid var(--primary);
        }
        .footer-links {
            display: flex;
            justify-content: center;
            gap: 2rem;
            margin-bottom: 1rem;
        }
        .footer-links a {
            color: var(--light);
            text-decoration: none;
        }
        .footer-links a:hover {
            color: var(--secondary);
        }
        .disclaimer {
            font-size: 0.8rem;
            opacity: 0.7;
            margin-top: 2rem;
        }
        .cookie-banner {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background-color: var(--dark);
            padding: 1rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            border-top: 1px solid var(--primary);
            z-index: 1000;
        }
        .cookie-banner button {
            background-color: var(--secondary);
            color: var(--dark);
            border: none;
            padding: 0.5rem 1rem;
            cursor: pointer;
        }
        @media (max-width: 768px) {
            .nav-links {
                position: absolute;
                right: 0;
                top: 80px;
                background-color: var(--dark);
                flex-direction: column;
                width: 100%;
                align-items: center;
                padding: 1rem 0;
                transform: translateY(-150%);
                transition: transform 0.5s;
            }
            .nav-active {
                transform: translateY(0);
            }
            .burger {
                display: block;
            }
            .toggle .line1 {
                transform: rotate(-45deg) translate(-5px, 6px);
            }
            .toggle .line2 {
                opacity: 0;
            }
            .toggle .line3 {
                transform: rotate(45deg) translate(-5px, -6px);
            }
        }

