:root {
            --primary: #00f0ff;
            --secondary: #ff00aa;
            --dark: #0a0a20;
            --light: #e0e0ff;
            --accent: #7b2dff;
            --text: #ffffff;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Courier New', monospace;
        }
        
        body {
            background-color: var(--dark);
            color: var(--text);
            line-height: 1.6;
            padding-top: 80px;
            overflow-x: hidden;
        }
        
        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            background-color: rgba(10, 10, 32, 0.9);
            backdrop-filter: blur(10px);
            padding: 1rem 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            z-index: 1000;
            border-bottom: 1px solid var(--primary);
        }
        
        .logo {
            font-size: 1.8rem;
            font-weight: bold;
            color: var(--primary);
            text-decoration: none;
            display: flex;
            align-items: center;
        }
        
        .logo span {
            color: var(--secondary);
        }
        
        nav ul {
            display: flex;
            list-style: none;
        }
        
        nav ul li {
            margin-left: 2rem;
        }
        
        nav ul li a {
            color: var(--light);
            text-decoration: none;
            font-weight: bold;
            transition: color 0.3s;
            position: relative;
        }
        
        nav ul li a:hover {
            color: var(--primary);
        }
        
        nav ul li a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background-color: var(--primary);
            transition: width 0.3s;
        }
        
        nav ul li a:hover::after {
            width: 100%;
        }
        
        .burger {
            display: none;
            cursor: pointer;
        }
        
        .burger div {
            width: 25px;
            height: 3px;
            background-color: var(--light);
            margin: 5px;
            transition: all 0.3s ease;
        }
        
        section {
            padding: 5rem 2rem;
            position: relative;
        }
        
        .hero {
            min-height: 80vh;
            display: flex;
            align-items: center;
            background: linear-gradient(rgba(10, 10, 32, 0.8), rgba(10, 10, 32, 0.9)), url('https://images.unsplash.com/photo-1451187580459-43490279c0fa?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80') no-repeat center center/cover;
            position: relative;
        }
        
        .hero-content {
            max-width: 800px;
            animation: fadeIn 1.5s ease-out;
        }
        
        h1 {
            font-size: 3.5rem;
            margin-bottom: 1.5rem;
            color: var(--primary);
            text-shadow: 0 0 10px rgba(0, 240, 255, 0.5);
        }
        
        h2 {
            font-size: 2.5rem;
            margin-bottom: 1.5rem;
            color: var(--primary);
        }
        
        h3 {
            font-size: 1.8rem;
            margin-bottom: 1rem;
            color: var(--secondary);
        }
        
        p {
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
        }
        
        .btn {
            display: inline-block;
            padding: 0.8rem 2rem;
            background-color: var(--primary);
            color: var(--dark);
            text-decoration: none;
            font-weight: bold;
            border-radius: 4px;
            transition: all 0.3s;
            border: none;
            cursor: pointer;
            margin-top: 1rem;
        }
        
        .btn:hover {
            background-color: var(--secondary);
            color: var(--text);
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(255, 0, 170, 0.4);
        }
        
        .about {
            background-color: var(--dark);
            position: relative;
        }
        
        .about::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('https://images.unsplash.com/photo-1517245386807-bb43f82c33c4?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80') no-repeat center center/cover;
            opacity: 0.1;
            z-index: 0;
        }
        
        .about-content {
            position: relative;
            z-index: 1;
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .products {
            background-color: #0f0f2d;
        }
        
        .product-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }
        
        .product-card {
            background-color: rgba(20, 20, 50, 0.7);
            padding: 2rem;
            border-radius: 8px;
            border-left: 4px solid var(--primary);
            transition: transform 0.3s, box-shadow 0.3s;
        }
        
        .product-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 10px 20px rgba(0, 240, 255, 0.2);
        }
        
        .prices {
            background-color: var(--dark);
        }
        
        .price-table {
            width: 100%;
            border-collapse: collapse;
            margin-top: 2rem;
        }
        
        .price-table th, .price-table td {
            padding: 1rem;
            text-align: left;
            border-bottom: 1px solid var(--accent);
        }
        
        .price-table th {
            background-color: rgba(123, 45, 255, 0.2);
            color: var(--primary);
        }
        
        .price-table tr:hover {
            background-color: rgba(123, 45, 255, 0.1);
        }
        
        .gallery {
            background-color: #0f0f2d;
        }
        
        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 1rem;
            margin-top: 2rem;
        }
        
        .gallery-item {
            height: 250px;
            overflow: hidden;
            border-radius: 8px;
            position: relative;
        }
        
        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s;
        }
        
        .gallery-item:hover img {
            transform: scale(1.1);
        }
        
        .feedback {
            background-color: var(--dark);
        }
        
        .slider {
            position: relative;
            max-width: 800px;
            margin: 3rem auto 0;
            overflow: hidden;
        }
        
        .slides {
            display: flex;
            transition: transform 0.5s ease;
        }
        
        .slide {
            min-width: 100%;
            padding: 2rem;
            background-color: rgba(20, 20, 50, 0.7);
            border-radius: 8px;
            border-top: 4px solid var(--secondary);
        }
        
        .client-info {
            display: flex;
            align-items: center;
            margin-top: 1rem;
        }
        
        .client-info img {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            margin-right: 1rem;
            object-fit: cover;
        }
        
        .slider-nav {
            display: flex;
            justify-content: center;
            margin-top: 1rem;
        }
        
        .slider-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background-color: var(--light);
            margin: 0 5px;
            cursor: pointer;
            opacity: 0.5;
            transition: opacity 0.3s;
        }
        
        .slider-dot.active {
            opacity: 1;
            background-color: var(--primary);
        }
        
        .faq {
            background-color: #0f0f2d;
        }
        
        .faq-item {
            margin-bottom: 1rem;
            border-bottom: 1px solid var(--accent);
            padding-bottom: 1rem;
        }
        
        .faq-question {
            display: flex;
            justify-content: space-between;
            align-items: center;
            cursor: pointer;
            padding: 1rem 0;
        }
        
        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease;
        }
        
        .faq-answer p {
            padding: 0 1rem 1rem;
        }
        
        .faq-item.active .faq-answer {
            max-height: 500px;
        }
        
        .contact-form {
            max-width: 600px;
            margin: 2rem auto 0;
            background-color: rgba(20, 20, 50, 0.7);
            padding: 2rem;
            border-radius: 8px;
        }
        
        .form-group {
            margin-bottom: 1.5rem;
        }
        
        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            color: var(--primary);
        }
        
        .form-group input, .form-group textarea {
            width: 100%;
            padding: 0.8rem;
            background-color: rgba(255, 255, 255, 0.1);
            border: 1px solid var(--accent);
            border-radius: 4px;
            color: var(--text);
        }
        
        .form-group textarea {
            min-height: 150px;
        }
        
        footer {
            background-color: #050510;
            padding: 3rem 2rem;
            border-top: 1px solid var(--accent);
        }
        
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 2rem;
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .footer-column h3 {
            color: var(--primary);
            margin-bottom: 1.5rem;
            font-size: 1.3rem;
        }
        
        .footer-column ul {
            list-style: none;
        }
        
        .footer-column ul li {
            margin-bottom: 0.8rem;
        }
        
        .footer-column ul li a {
            color: var(--light);
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .footer-column ul li a:hover {
            color: var(--primary);
        }
        
        .copyright {
            text-align: center;
            margin-top: 3rem;
            padding-top: 1.5rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }
        
        .disclaimer {
            background-color: rgba(255, 0, 0, 0.1);
            padding: 1.5rem;
            border-radius: 8px;
            margin-top: 3rem;
            border-left: 4px solid #ff0000;
        }
        
        .cookie-banner {
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            background-color: rgba(10, 10, 32, 0.95);
            padding: 1.5rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            z-index: 1000;
            border-top: 1px solid var(--primary);
            transform: translateY(100%);
            transition: transform 0.3s ease;
        }
        
        .cookie-banner.show {
            transform: translateY(0);
        }
        
        .cookie-banner p {
            max-width: 800px;
            margin-right: 1rem;
        }
        
        .modal {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.8);
            display: flex;
            justify-content: center;
            align-items: center;
            z-index: 2000;
            opacity: 0;
            pointer-events: none;
            transition: opacity 0.3s;
        }
        
        .modal.show {
            opacity: 1;
            pointer-events: all;
        }
        
        .modal-content {
            background-color: var(--dark);
            padding: 2rem;
            border-radius: 8px;
            max-width: 500px;
            width: 90%;
            text-align: center;
            border: 1px solid var(--primary);
            position: relative;
        }
        
        .close-modal {
            position: absolute;
            top: 10px;
            right: 10px;
            background: none;
            border: none;
            color: var(--light);
            font-size: 1.5rem;
            cursor: pointer;
        }
        
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }
        
        @media (max-width: 768px) {
            nav ul {
                position: fixed;
                top: 80px;
                left: 0;
                width: 100%;
                background-color: var(--dark);
                flex-direction: column;
                align-items: center;
                padding: 2rem 0;
                transform: translateY(-150%);
                transition: transform 0.3s ease;
                border-bottom: 1px solid var(--primary);
            }
            
            nav ul.show {
                transform: translateY(0);
            }
            
            nav ul 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);
            }
            
            h1 {
                font-size: 2.5rem;
            }
            
            h2 {
                font-size: 2rem;
            }
            
            .hero-content {
                text-align: center;
            }
            
            .footer-content {
                grid-template-columns: 1fr;
            }
            
            .cookie-banner {
                flex-direction: column;
                text-align: center;
            }
            
            .cookie-banner p {
                margin-right: 0;
                margin-bottom: 1rem;
            }
        }

