:root {
            --neon-pink: #ff2d95;
            --neon-blue: #0ff0fc;
            --neon-purple: #8a2be2;
            --dark-bg: #0a0a16;
            --darker-bg: #050510;
            --text-color: #e0e0ff;
            --accent-yellow: #f2ff00;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Courier New', monospace;
        }
        
        body {
            background-color: var(--dark-bg);
            color: var(--text-color);
            line-height: 1.6;
            overflow-x: hidden;
            background-image: 
                radial-gradient(circle at 10% 20%, rgba(255, 45, 149, 0.1) 0%, transparent 20%),
                radial-gradient(circle at 90% 60%, rgba(15, 240, 252, 0.1) 0%, transparent 20%);
        }
        
        .container {
            width: 100%;
            padding: 0 15px;
            margin: 0 auto;
        }
        
        @media (min-width: 576px) {
            .container {
                max-width: 540px;
            }
        }
        
        @media (min-width: 768px) {
            .container {
                max-width: 720px;
            }
        }
        
        @media (min-width: 992px) {
            .container {
                max-width: 960px;
            }
        }
        
        @media (min-width: 1200px) {
            .container {
                max-width: 1140px;
            }
        }
        
        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            background-color: rgba(10, 10, 22, 0.9);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid var(--neon-blue);
            z-index: 1000;
            padding: 15px 0;
        }
        
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .logo {
            font-size: 24px;
            font-weight: bold;
            color: var(--neon-pink);
            text-shadow: 0 0 10px var(--neon-pink);
            text-decoration: none;
        }
        
        .nav-menu {
            display: flex;
            list-style: none;
        }
        
        .nav-menu li {
            margin-left: 25px;
        }
        
        .nav-menu a {
            color: var(--text-color);
            text-decoration: none;
            transition: color 0.3s;
            position: relative;
        }
        
        .nav-menu a:hover {
            color: var(--neon-blue);
        }
        
        .nav-menu a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background-color: var(--neon-blue);
            transition: width 0.3s;
        }
        
        .nav-menu a:hover::after {
            width: 100%;
        }
        
        .burger {
            display: none;
            cursor: pointer;
            flex-direction: column;
            justify-content: space-between;
            width: 30px;
            height: 21px;
        }
        
        .burger span {
            height: 3px;
            width: 100%;
            background-color: var(--neon-blue);
            border-radius: 3px;
            transition: all 0.3s;
        }
        
        main {
            padding-top: 80px;
        }
        
        section {
            padding: 80px 0;
            position: relative;
        }
        
        section:nth-child(even) {
            background-color: var(--darker-bg);
        }
        
        h1, h2, h3 {
            margin-bottom: 20px;
            text-shadow: 0 0 5px rgba(224, 224, 255, 0.5);
        }
        
        h1 {
            font-size: 3rem;
            color: var(--neon-blue);
            margin-bottom: 30px;
        }
        
        h2 {
            font-size: 2.5rem;
            color: var(--neon-pink);
        }
        
        h3 {
            font-size: 1.8rem;
            color: var(--accent-yellow);
        }
        
        p {
            margin-bottom: 20px;
            font-size: 1.1rem;
        }
        
        .btn {
            display: inline-block;
            padding: 12px 30px;
            background: transparent;
            color: var(--neon-blue);
            border: 2px solid var(--neon-blue);
            text-decoration: none;
            font-weight: bold;
            text-transform: uppercase;
            letter-spacing: 2px;
            transition: all 0.3s;
            cursor: pointer;
            position: relative;
            overflow: hidden;
            margin-top: 20px;
        }
        
        .btn:hover {
            color: var(--dark-bg);
            background-color: var(--neon-blue);
            box-shadow: 0 0 15px var(--neon-blue);
        }
        
        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            background: linear-gradient(rgba(10, 10, 22, 0.8), rgba(10, 10, 22, 0.9)), url('https://images.unsplash.com/photo-1693106159551-0d8339ae7807?q=80&w=687&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D') no-repeat center center/cover;
            text-align: center;
        }
        
        .hero-content {
            max-width: 800px;
            margin: 0 auto;
        }
        
        .about-content {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 40px;
        }
        
        .about-text {
            flex: 1;
            min-width: 300px;
        }
        
        .about-image {
            flex: 1;
            min-width: 300px;
            border: 2px solid var(--neon-purple);
            box-shadow: 0 0 20px var(--neon-purple);
            overflow: hidden;
        }
        
        .about-image img {
            width: 100%;
            height: auto;
            display: block;
            transition: transform 0.5s;
        }
        
        .about-image:hover img {
            transform: scale(1.05);
        }
        
        .products-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }
        
        .product-card {
            background: rgba(15, 15, 35, 0.7);
            border: 1px solid var(--neon-purple);
            padding: 20px;
            border-radius: 5px;
            transition: transform 0.3s, box-shadow 0.3s;
            overflow: hidden;
        }
        
        .product-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 0 20px var(--neon-purple);
        }
        
        .product-image {
            width: 100%;
            height: 200px;
            object-fit: cover;
            margin-bottom: 15px;
            border: 1px solid var(--neon-blue);
        }
        
        .prices-container {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 30px;
            margin-top: 40px;
        }
        
        .price-card {
            background: rgba(15, 15, 35, 0.7);
            border: 1px solid var(--neon-pink);
            padding: 30px;
            border-radius: 5px;
            text-align: center;
            flex: 1;
            min-width: 250px;
            max-width: 350px;
            transition: transform 0.3s, box-shadow 0.3s;
        }
        
        .price-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 0 20px var(--neon-pink);
        }
        
        .price {
            font-size: 2.5rem;
            color: var(--accent-yellow);
            margin: 20px 0;
        }
        
        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 15px;
            margin-top: 40px;
        }
        
        .gallery-item {
            height: 250px;
            overflow: hidden;
            border: 1px solid var(--neon-blue);
            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-slider {
            position: relative;
            overflow: hidden;
            margin-top: 40px;
            height: 300px;
        }
        
        .feedback-slides {
            display: flex;
            transition: transform 0.5s ease;
            height: 100%;
        }
        
        .feedback-slide {
            min-width: 100%;
            padding: 20px;
            background: rgba(15, 15, 35, 0.7);
            border: 1px solid var(--accent-yellow);
            border-radius: 5px;
        }
        
        .client-info {
            display: flex;
            align-items: center;
            margin-top: 20px;
        }
        
        .client-avatar {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            margin-right: 15px;
            border: 2px solid var(--neon-pink);
        }
        
        .faq-item {
            margin-bottom: 20px;
            border-bottom: 1px solid var(--neon-purple);
            padding-bottom: 20px;
        }
        
        .faq-question {
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease;
        }
        
        .faq-answer.active {
            max-height: 500px;
        }
        
        .contact-form {
            max-width: 600px;
            margin: 40px auto 0;
        }
        
        .form-group {
            margin-bottom: 20px;
        }
        
        .form-group label {
            display: block;
            margin-bottom: 5px;
            color: var(--neon-blue);
        }
        
        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 12px;
            background: rgba(15, 15, 35, 0.7);
            border: 1px solid var(--neon-blue);
            color: var(--text-color);
        }
        
        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--neon-pink);
            box-shadow: 0 0 10px var(--neon-pink);
        }
        
        .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(--darker-bg);
            padding: 40px;
            border: 2px solid var(--neon-blue);
            text-align: center;
            max-width: 500px;
            width: 90%;
        }
        
        .close-modal {
            position: absolute;
            top: 10px;
            right: 10px;
            font-size: 24px;
            cursor: pointer;
            color: var(--neon-pink);
        }
        
        .disclaimer {
            font-size: 0.8rem;
            padding: 20px;
            background-color: var(--darker-bg);
            border-top: 1px solid var(--neon-purple);
            text-align: center;
        }
        
        .cookie-banner {
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            background-color: var(--darker-bg);
            padding: 15px;
            border-top: 1px solid var(--neon-blue);
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            z-index: 1000;
        }
        
        .cookie-banner p {
            margin-bottom: 0;
            flex: 1;
            min-width: 250px;
        }
        
        .cookie-banner button {
            margin-left: 15px;
        }
        
        footer {
            background-color: var(--darker-bg);
            padding: 40px 0;
            border-top: 1px solid var(--neon-pink);
        }
        
        .footer-content {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 30px;
        }
        
        .footer-section {
            flex: 1;
            min-width: 250px;
        }
        
        .footer-section h3 {
            margin-bottom: 20px;
            color: var(--neon-blue);
        }
        
        .footer-links {
            list-style: none;
        }
        
        .footer-links li {
            margin-bottom: 10px;
        }
        
        .footer-links a {
            color: var(--text-color);
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .footer-links a:hover {
            color: var(--neon-pink);
        }
        
        .copyright {
            text-align: center;
            margin-top: 40px;
            padding-top: 20px;
            border-top: 1px solid var(--neon-purple);
        }
        
        @media (max-width: 768px) {
            .burger {
                display: flex;
            }
            
            .nav-menu {
                position: fixed;
                top: 70px;
                right: -100%;
                background-color: var(--darker-bg);
                width: 70%;
                height: calc(100vh - 70px);
                flex-direction: column;
                align-items: center;
                justify-content: flex-start;
                padding-top: 50px;
                transition: right 0.3s ease;
                border-left: 1px solid var(--neon-blue);
            }
            
            .nav-menu.active {
                right: 0;
            }
            
            .nav-menu li {
                margin: 15px 0;
            }
            
            h1 {
                font-size: 2.5rem;
            }
            
            h2 {
                font-size: 2rem;
            }
            
            h3 {
                font-size: 1.5rem;
            }
        }
        
        .burger.active span:nth-child(1) {
            transform: rotate(45deg) translate(5px, 5px);
        }
        
        .burger.active span:nth-child(2) {
            opacity: 0;
        }
        
        .burger.active span:nth-child(3) {
            transform: rotate(-45deg) translate(7px, -6px);
        }

