:root {
            --neon-purple: #bc13fe;
            --electric-blue: #0ff0fc;
            --dark-gray: #121212;
            --light-gray: #1e1e1e;
            --text-color: #e0e0e0;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial', sans-serif;
        }
        
        body {
            background-color: var(--dark-gray);
            color: var(--text-color);
            line-height: 1.6;
            padding-top: 80px;
        }
        
        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            background-color: rgba(18, 18, 18, 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(--neon-purple);
        }
        
        .logo {
            font-size: 1.8rem;
            font-weight: bold;
            color: var(--electric-blue);
            text-decoration: none;
            text-transform: uppercase;
            letter-spacing: 2px;
        }
        
        .logo span {
            color: var(--neon-purple);
        }
        
        nav ul {
            display: flex;
            list-style: none;
        }
        
        nav ul li {
            margin-left: 1.5rem;
        }
        
        nav ul li a {
            color: var(--text-color);
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s;
            position: relative;
        }
        
        nav ul li a:hover {
            color: var(--electric-blue);
        }
        
        nav ul li a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background-color: var(--neon-purple);
            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(--text-color);
            margin: 5px;
            transition: all 0.3s ease;
        }
        
        section {
            padding: 4rem 2rem;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }
        
        .hero {
            background: linear-gradient(rgba(18, 18, 18, 0.8), rgba(18, 18, 18, 0.8)), 
                        url('https://images.unsplash.com/photo-1571019613454-1cb2f99b2d8b?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80') no-repeat center center/cover;
            text-align: center;
            position: relative;
        }
        
        .hero-content {
            max-width: 800px;
            margin: 0 auto;
            animation: fadeIn 1.5s ease-out;
        }
        
        h1 {
            font-size: 3rem;
            margin-bottom: 1rem;
            color: var(--electric-blue);
            text-shadow: 0 0 10px rgba(15, 240, 252, 0.5);
        }
        
        h2 {
            font-size: 2.5rem;
            margin-bottom: 1.5rem;
            color: var(--neon-purple);
        }
        
        h3 {
            font-size: 1.8rem;
            margin-bottom: 1rem;
            color: var(--electric-blue);
        }
        
        p {
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
        }
        
        .btn {
            display: inline-block;
            background: linear-gradient(45deg, var(--neon-purple), var(--electric-blue));
            color: var(--dark-gray);
            padding: 0.8rem 1.8rem;
            border: none;
            border-radius: 30px;
            font-weight: bold;
            text-decoration: none;
            cursor: pointer;
            transition: transform 0.3s, box-shadow 0.3s;
            margin-top: 1rem;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        .btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(188, 19, 254, 0.4);
        }
        
        .about {
            background-color: var(--light-gray);
        }
        
        .about-content {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 2rem;
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .about-text {
            flex: 1;
            min-width: 300px;
        }
        
        .about-image {
            flex: 1;
            min-width: 300px;
            height: 400px;
            background: url('https://images.unsplash.com/photo-1538805060514-97d9cc17730c?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80') no-repeat center center/cover;
            border-radius: 10px;
            box-shadow: 0 0 20px rgba(188, 19, 254, 0.3);
            transition: transform 0.5s;
        }
        
        .about-image:hover {
            transform: scale(1.03);
        }
        
        .products {
            background: linear-gradient(rgba(18, 18, 18, 0.9), rgba(18, 18, 18, 0.9)), 
                        url('https://images.unsplash.com/photo-1571902943202-507ec2618e8f?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80') no-repeat center center/cover;
        }
        
        .products-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .product-card {
            background-color: var(--light-gray);
            padding: 2rem;
            border-radius: 10px;
            box-shadow: 0 0 15px rgba(15, 240, 252, 0.2);
            transition: transform 0.3s, box-shadow 0.3s;
            border: 1px solid var(--neon-purple);
        }
        
        .product-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 10px 25px rgba(188, 19, 254, 0.4);
        }
        
        .product-card h3 {
            color: var(--neon-purple);
            margin-bottom: 1rem;
        }
        
        .prices {
            background-color: var(--light-gray);
        }
        
        .price-container {
            width: 100%;
            margin: 0 auto;
        }
        
        .price-table {
            width: 100%;
            border-collapse: collapse;
            margin-top: 2rem;
            background-color: var(--dark-gray);
            border: 1px solid var(--neon-purple);
        }
        
        .price-table th, .price-table td {
            padding: 1rem;
            text-align: left;
            border-bottom: 1px solid var(--neon-purple);
        }
        
        .price-table th {
            background-color: rgba(188, 19, 254, 0.2);
            color: var(--electric-blue);
        }
        
        .price-table tr:hover {
            background-color: rgba(15, 240, 252, 0.1);
        }
        
        .highlight {
            background-color: rgba(188, 19, 254, 0.3);
            font-weight: bold;
        }
        
        .gallery {
            background-color: var(--dark-gray);
        }
        
        .gallery-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 1rem;
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .gallery-item {
            height: 250px;
            overflow: hidden;
            border-radius: 10px;
            position: relative;
            box-shadow: 0 0 10px rgba(15, 240, 252, 0.3);
            transition: transform 0.3s;
        }
        
        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s;
        }
        
        .gallery-item:hover {
            transform: scale(1.05);
        }
        
        .gallery-item:hover img {
            transform: scale(1.1);
        }
        
        .feedback {
            background: linear-gradient(rgba(18, 18, 18, 0.9), rgba(18, 18, 18, 0.9)), 
                        url('https://images.unsplash.com/photo-1517836357463-d25dfeac3438?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80') no-repeat center center/cover;
        }
        
        .slider {
            position: relative;
            width: 100%;
            margin: 0 auto;
            overflow: hidden;
            border-radius: 10px;
            box-shadow: 0 0 20px rgba(188, 19, 254, 0.5);
        }
        
        .slides {
            display: flex;
            transition: transform 0.5s ease;
        }
        
        .slide {
            min-width: 100%;
            padding: 2rem;
            background-color: rgba(30, 30, 30, 0.9);
            text-align: center;
        }
        
        .slide-content {
            max-width: 600px;
            margin: 0 auto;
        }
        
        .client-name {
            color: var(--neon-purple);
            margin-top: 1rem;
            font-weight: bold;
        }
        
        .client-position {
            color: var(--electric-blue);
            font-style: italic;
        }
        
        .slider-nav {
            display: flex;
            justify-content: center;
            margin-top: 1rem;
        }
        
        .slider-dot {
            width: 12px;
            height: 12px;
            background-color: var(--text-color);
            border-radius: 50%;
            margin: 0 5px;
            cursor: pointer;
            transition: background-color 0.3s;
        }
        
        .slider-dot.active {
            background-color: var(--neon-purple);
        }
        
        .faq {
            background-color: var(--light-gray);
        }
        
        .faq-container {
            max-width: 800px;
            margin: 0 auto;
        }
        
        .faq-item {
            margin-bottom: 1rem;
            border: 1px solid var(--neon-purple);
            border-radius: 5px;
            overflow: hidden;
        }
        
        .faq-question {
            padding: 1rem;
            background-color: rgba(188, 19, 254, 0.1);
            color: var(--electric-blue);
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-weight: bold;
        }
        
        .faq-answer {
            padding: 1rem;
            background-color: var(--dark-gray);
            display: none;
        }
        
        .faq-answer.show {
            display: block;
            animation: fadeIn 0.5s;
        }
        
        .contact-form {
            max-width: 600px;
            margin: 0 auto;
            background-color: var(--light-gray);
            padding: 2rem;
            border-radius: 10px;
            box-shadow: 0 0 15px rgba(15, 240, 252, 0.3);
            border: 1px solid var(--neon-purple);
        }
        
        .form-group {
            margin-bottom: 1.5rem;
        }
        
        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            color: var(--electric-blue);
        }
        
        .form-group input, .form-group textarea {
            width: 100%;
            padding: 0.8rem;
            background-color: var(--dark-gray);
            border: 1px solid var(--neon-purple);
            border-radius: 5px;
            color: var(--text-color);
        }
        
        .form-group textarea {
            min-height: 100px;
            resize: vertical;
        }
        
        footer {
            background-color: var(--dark-gray);
            padding: 2rem;
            text-align: center;
            border-top: 1px solid var(--neon-purple);
        }
        
        .footer-content {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-around;
            max-width: 1200px;
            margin: 0 auto;
            gap: 2rem;
        }
        
        .footer-section {
            flex: 1;
            min-width: 250px;
        }
        
        .footer-section h3 {
            color: var(--electric-blue);
            margin-bottom: 1rem;
            font-size: 1.3rem;
        }
        
        .footer-section ul {
            list-style: none;
        }
        
        .footer-section ul li {
            margin-bottom: 0.5rem;
        }
        
        .footer-section ul li a {
            color: var(--text-color);
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .footer-section ul li a:hover {
            color: var(--neon-purple);
        }
        
        .copyright {
            margin-top: 2rem;
            padding-top: 1rem;
            border-top: 1px solid var(--neon-purple);
            font-size: 0.9rem;
        }
        
        .disclaimer {
            font-size: 0.8rem;
            color: #888;
            margin-top: 2rem;
            text-align: center;
        }
        
        .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(--light-gray);
            padding: 2rem;
            border-radius: 10px;
            max-width: 500px;
            width: 90%;
            text-align: center;
            border: 2px solid var(--electric-blue);
            box-shadow: 0 0 20px rgba(15, 240, 252, 0.5);
            animation: modalFadeIn 0.5s;
        }
        
        .close-modal {
            background-color: var(--neon-purple);
            color: var(--dark-gray);
            border: none;
            padding: 0.5rem 1rem;
            border-radius: 5px;
            margin-top: 1rem;
            cursor: pointer;
            font-weight: bold;
            transition: background-color 0.3s;
        }
        
        .close-modal:hover {
            background-color: var(--electric-blue);
        }
        
        .cookie-banner {
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            background-color: var(--light-gray);
            padding: 1rem;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
            border-top: 1px solid var(--neon-purple);
            z-index: 1000;
            transform: translateY(100%);
            transition: transform 0.5s;
        }
        
        .cookie-banner.show {
            transform: translateY(0);
        }
        
        .cookie-text {
            flex: 1;
            min-width: 250px;
            margin-right: 1rem;
            margin-bottom: 1rem;
        }
        
        .cookie-buttons {
            display: flex;
            gap: 1rem;
        }
        
        .cookie-btn {
            padding: 0.5rem 1rem;
            border: none;
            border-radius: 5px;
            cursor: pointer;
            font-weight: bold;
        }
        
        .accept-btn {
            background-color: var(--neon-purple);
            color: var(--dark-gray);
        }
        
        .decline-btn {
            background-color: transparent;
            color: var(--text-color);
            border: 1px solid var(--text-color);
        }
        
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }
        
        @keyframes modalFadeIn {
            from { opacity: 0; transform: scale(0.8); }
            to { opacity: 1; transform: scale(1); }
        }
        
        @media (max-width: 768px) {
            nav ul {
                position: fixed;
                top: 80px;
                left: 0;
                width: 100%;
                background-color: var(--dark-gray);
                flex-direction: column;
                align-items: center;
                padding: 1rem 0;
                transform: translateY(-150%);
                transition: transform 0.5s ease;
                z-index: 999;
                border-bottom: 1px solid var(--neon-purple);
            }
            
            nav ul.active {
                transform: translateY(0);
            }
            
            nav ul li {
                margin: 1rem 0;
            }
            
            .burger {
                display: block;
            }
            
            h1 {
                font-size: 2.2rem;
            }
            
            h2 {
                font-size: 2rem;
            }
            
            .about-content, .products-container, .gallery-container {
                grid-template-columns: 1fr;
            }
            
            .footer-content {
                flex-direction: column;
                align-items: center;
                text-align: center;
            }
            
            .footer-section {
                margin-bottom: 1.5rem;
            }
        }
        
        .burger.active .line1 {
            transform: rotate(-45deg) translate(-5px, 6px);
        }
        
        .burger.active .line2 {
            opacity: 0;
        }
        
        .burger.active .line3 {
            transform: rotate(45deg) translate(-5px, -6px);
        }

