:root {
            --primary: #FF4E50;
            --secondary: #1A1A2E;
            --accent: #00E0FF;
            --text: #E6E6E6;
            --bg: #0D0D1A;
        }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Courier New', monospace;
        }
        body {
            background-color: var(--bg);
            color: var(--text);
            line-height: 1.6;
            overflow-x: hidden;
        }
        header {
            position: fixed;
            top: 0;
            width: 100%;
            background-color: var(--secondary);
            z-index: 1000;
            padding: 1rem;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
        }
        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            font-size: 1.5rem;
            font-weight: bold;
            color: var(--accent);
            text-decoration: none;
        }
        .nav-links {
            display: flex;
            list-style: none;
        }
        .nav-links li {
            margin-left: 2rem;
        }
        .nav-links a {
            color: var(--text);
            text-decoration: none;
            transition: color 0.3s;
        }
        .nav-links a:hover {
            color: var(--accent);
        }
        .burger {
            display: none;
            cursor: pointer;
        }
        .burger div {
            width: 25px;
            height: 3px;
            background-color: var(--text);
            margin: 5px;
            transition: all 0.3s ease;
        }
        main {
            margin-top: 80px;
        }
        section {
            padding: 4rem 2rem;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }
        h1, h2, h3 {
            color: var(--accent);
            margin-bottom: 1rem;
        }
        h1 {
            font-size: 3rem;
            background: linear-gradient(45deg, var(--primary), var(--accent));
            background-clip: text;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        h2 {
            font-size: 2rem;
            border-bottom: 2px solid var(--primary);
            display: inline-block;
        }
        p {
            margin-bottom: 1rem;
        }
        .btn {
            display: inline-block;
            padding: 0.8rem 1.5rem;
            background-color: var(--primary);
            color: white;
            text-decoration: none;
            border-radius: 5px;
            transition: all 0.3s;
            margin-top: 1rem;
        }
        .btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(255, 78, 80, 0.4);
        }
        .hero {
            background: linear-gradient(rgba(13, 13, 26, 0.8), rgba(13, 13, 26, 0.8)), url('https://images.unsplash.com/photo-1545205597-3d9d02c29597?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80');
            background-size: cover;
            background-position: center;
            text-align: center;
        }
        .about {
            background-color: var(--secondary);
        }
        .products {
            background: linear-gradient(rgba(26, 26, 46, 0.9), rgba(26, 26, 46, 0.9)), url('https://images.unsplash.com/photo-1571019613454-1cb2f99b2d8b?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80');
            background-size: cover;
            background-attachment: fixed;
        }
        .prices {
            background-color: var(--bg);
        }
        .gallery {
            background-color: var(--secondary);
        }
        .feedback {
            background: linear-gradient(rgba(13, 13, 26, 0.9), rgba(13, 13, 26, 0.9)), url('https://images.unsplash.com/photo-1571902943202-507ec2618e8f?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80');
            background-size: cover;
            background-attachment: fixed;
        }
        .faq {
            background-color: var(--bg);
        }
        .disclaimer {
            background-color: var(--secondary);
            padding: 1rem;
            font-size: 0.8rem;
            text-align: center;
        }
        footer {
            background-color: var(--secondary);
            padding: 2rem;
            text-align: center;
        }
        .footer-links {
            display: flex;
            justify-content: center;
            list-style: none;
            margin-bottom: 1rem;
        }
        .footer-links li {
            margin: 0 1rem;
        }
        .footer-links a {
            color: var(--text);
            text-decoration: none;
        }
        .footer-links a:hover {
            color: var(--accent);
        }
        .contact-info {
            margin-top: 1rem;
        }
        .cookie-banner {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background-color: var(--secondary);
            padding: 1rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            z-index: 1000;
            box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.5);
        }
        .cookie-banner.hidden {
            display: none;
        }
        .cookie-banner button {
            background-color: var(--primary);
            color: white;
            border: none;
            padding: 0.5rem 1rem;
            cursor: pointer;
        }
        .modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.8);
            z-index: 2000;
            justify-content: center;
            align-items: center;
        }
        .modal-content {
            background-color: var(--secondary);
            padding: 2rem;
            border-radius: 5px;
            max-width: 500px;
            width: 90%;
            text-align: center;
        }
        .close-modal {
            margin-top: 1rem;
            background-color: var(--primary);
            color: white;
            border: none;
            padding: 0.5rem 1rem;
            cursor: pointer;
        }
        form {
            display: flex;
            flex-direction: column;
            max-width: 500px;
            margin: 0 auto;
        }
        form input, form textarea {
            margin-bottom: 1rem;
            padding: 0.8rem;
            border: none;
            border-radius: 5px;
        }
        form button {
            background-color: var(--primary);
            color: white;
            border: none;
            padding: 0.8rem;
            cursor: pointer;
            border-radius: 5px;
        }
        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 1rem;
            margin-top: 2rem;
        }
        .gallery-item {
            height: 200px;
            overflow: hidden;
            border-radius: 5px;
        }
        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s;
        }
        .gallery-item:hover img {
            transform: scale(1.1);
        }
        .price-cards {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 2rem;
            margin-top: 2rem;
        }
        .price-card {
            background-color: var(--secondary);
            padding: 2rem;
            border-radius: 5px;
            width: 300px;
            text-align: center;
            transition: transform 0.3s;
        }
        .price-card:hover {
            transform: translateY(-10px);
        }
        .price-card h3 {
            color: var(--primary);
        }
        .price {
            font-size: 2rem;
            color: var(--accent);
            margin: 1rem 0;
        }
        .feedback-slider {
            position: relative;
            max-width: 800px;
            margin: 0 auto;
            overflow: hidden;
        }
        .feedback-slide {
            display: none;
            padding: 2rem;
            background-color: rgba(26, 26, 46, 0.8);
            border-radius: 5px;
            text-align: center;
        }
        .feedback-slide.active {
            display: block;
            animation: fade 1s;
        }
        @keyframes fade {
            from {opacity: 0.4;}
            to {opacity: 1;}
        }
        .prev, .next {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            cursor: pointer;
            padding: 1rem;
            color: white;
            font-weight: bold;
            font-size: 1.5rem;
            user-select: none;
        }
        .next {
            right: 0;
        }
        .faq-item {
            margin-bottom: 1rem;
            border-bottom: 1px solid var(--primary);
            padding-bottom: 1rem;
        }
        .faq-question {
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .faq-answer {
            display: none;
            padding-top: 1rem;
        }
        .faq-answer.show {
            display: block;
        }
        @media (max-width: 768px) {
            .nav-links {
                position: absolute;
                right: 0;
                top: 80px;
                background-color: var(--secondary);
                flex-direction: column;
                width: 100%;
                text-align: center;
                transform: translateX(100%);
                transition: transform 0.5s ease-in;
            }
            .nav-links.active {
                transform: translateX(0);
            }
            .nav-links li {
                margin: 1rem 0;
            }
            .burger {
                display: block;
            }
            .burger.active div:nth-child(1) {
                transform: rotate(-45deg) translate(-5px, 6px);
            }
            .burger.active div:nth-child(2) {
                opacity: 0;
            }
            .burger.active div:nth-child(3) {
                transform: rotate(45deg) translate(-5px, -6px);
            }
            .price-cards {
                flex-direction: column;
                align-items: center;
            }
            h1 {
                font-size: 2rem;
            }
            h2 {
                font-size: 1.5rem;
            }
        }

