:root {
            --neon-pink: #ff2a6d;
            --neon-blue: #05d9e8;
            --dark-bg: #0d0221;
            --text-light: #d1f7ff;
            --accent-purple: #9d00ff;
        }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial', sans-serif;
        }
        body {
            background-color: var(--dark-bg);
            color: var(--text-light);
            overflow-x: hidden;
        }
        header {
            position: fixed;
            top: 0;
            width: 100%;
            background: rgba(13, 2, 33, 0.9);
            backdrop-filter: blur(10px);
            z-index: 1000;
            padding: 1rem 2rem;
            border-bottom: 1px solid var(--neon-pink);
        }
        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            font-size: 1.5rem;
            font-weight: bold;
            color: var(--neon-blue);
            text-shadow: 0 0 10px var(--neon-blue);
        }
        .nav-links {
            display: flex;
            gap: 2rem;
        }
        .nav-links a {
            color: var(--text-light);
            text-decoration: none;
            transition: color 0.3s;
        }
        .nav-links a:hover {
            color: var(--neon-pink);
        }
        .burger {
            display: none;
            cursor: pointer;
        }
        .burger div {
            width: 25px;
            height: 3px;
            background: var(--neon-blue);
            margin: 5px;
            transition: all 0.3s;
        }
        @media (max-width: 768px) {
            .nav-links {
                position: fixed;
                top: 80px;
                right: -100%;
                width: 50%;
                height: calc(100vh - 80px);
                background: rgba(13, 2, 33, 0.95);
                flex-direction: column;
                align-items: center;
                justify-content: center;
                transition: right 0.5s;
            }
            .nav-links.active {
                right: 0;
            }
            .burger {
                display: block;
            }
        }
        .hero {
            height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(rgba(13, 2, 33, 0.7), rgba(13, 2, 33, 0.7)), 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-position: center;
            text-align: center;
            padding: 0 2rem;
        }
        .hero-content h1 {
            font-size: 3rem;
            margin-bottom: 1rem;
            color: var(--neon-blue);
            text-shadow: 0 0 15px var(--neon-blue);
        }
        .hero-content p {
            font-size: 1.2rem;
            margin-bottom: 2rem;
            max-width: 700px;
        }
        .btn {
            display: inline-block;
            padding: 0.8rem 2rem;
            background: var(--neon-pink);
            color: white;
            text-decoration: none;
            border-radius: 5px;
            font-weight: bold;
            transition: all 0.3s;
        }
        .btn:hover {
            background: var(--accent-purple);
            box-shadow: 0 0 15px var(--accent-purple);
        }
        section {
            padding: 5rem 2rem;
        }
        h2 {
            font-size: 2.5rem;
            margin-bottom: 2rem;
            color: var(--neon-pink);
            text-align: center;
        }
        .about {
            background: rgba(9, 0, 26, 0.8);
        }
        .about-content {
            display: flex;
            align-items: center;
            gap: 3rem;
            max-width: 1200px;
            margin: 0 auto;
        }
        .about-text {
            flex: 1;
        }
        .about-img {
            flex: 1;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 0 20px var(--neon-blue);
        }
        .about-img img {
            width: 100%;
            height: auto;
            display: block;
        }
        @media (max-width: 768px) {
            .about-content {
                flex-direction: column;
            }
        }
        .products {
            background: rgba(13, 2, 33, 0.9);
        }
        .product-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            max-width: 1200px;
            margin: 0 auto;
        }
        .product-card {
            background: rgba(157, 0, 255, 0.1);
            border: 1px solid var(--accent-purple);
            border-radius: 10px;
            padding: 2rem;
            transition: transform 0.3s, box-shadow 0.3s;
        }
        .product-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 10px 20px rgba(157, 0, 255, 0.3);
        }
        .product-card h3 {
            color: var(--neon-blue);
            margin-bottom: 1rem;
        }
        .prices {
            background: rgba(9, 0, 26, 0.8);
        }
        .price-cards {
            display: flex;
            gap: 2rem;
            justify-content: center;
            flex-wrap: wrap;
            max-width: 1200px;
            margin: 0 auto;
        }
        .price-card {
            background: rgba(255, 42, 109, 0.1);
            border: 1px solid var(--neon-pink);
            border-radius: 10px;
            padding: 2rem;
            width: 300px;
            text-align: center;
            transition: transform 0.3s;
        }
        .price-card:hover {
            transform: scale(1.05);
        }
        .price-card h3 {
            color: var(--neon-pink);
            margin-bottom: 1rem;
        }
        .price {
            font-size: 2rem;
            font-weight: bold;
            color: var(--neon-blue);
            margin: 1rem 0;
        }
        .gallery {
            background: rgba(13, 2, 33, 0.9);
        }
        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 1rem;
            max-width: 1200px;
            margin: 0 auto;
        }
        .gallery-item {
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 0 10px var(--neon-blue);
            transition: transform 0.3s;
        }
        .gallery-item:hover {
            transform: scale(1.03);
        }
        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }
        .feedback {
            background: rgba(9, 0, 26, 0.8);
        }
        .feedback-slider {
            max-width: 800px;
            margin: 0 auto;
            position: relative;
            overflow: hidden;
        }
        .feedback-slide {
            padding: 2rem;
            background: rgba(5, 217, 232, 0.1);
            border: 1px solid var(--neon-blue);
            border-radius: 10px;
            text-align: center;
            display: none;
        }
        .feedback-slide.active {
            display: block;
            animation: fadeIn 1s;
        }
        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }
        .client-name {
            font-weight: bold;
            color: var(--neon-pink);
            margin-top: 1rem;
        }
        .slider-nav {
            display: flex;
            justify-content: center;
            gap: 1rem;
            margin-top: 2rem;
        }
        .slider-dot {
            width: 12px;
            height: 12px;
            background: var(--text-light);
            border-radius: 50%;
            cursor: pointer;
            opacity: 0.5;
            transition: all 0.3s;
        }
        .slider-dot.active {
            background: var(--neon-pink);
            opacity: 1;
        }
        .faq {
            background: rgba(13, 2, 33, 0.9);
        }
        .faq-container {
            max-width: 800px;
            margin: 0 auto;
        }
        .faq-item {
            margin-bottom: 1rem;
            border: 1px solid var(--neon-blue);
            border-radius: 5px;
            overflow: hidden;
        }
        .faq-question {
            background: rgba(5, 217, 232, 0.1);
            padding: 1rem;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .faq-question:hover {
            background: rgba(5, 217, 232, 0.2);
        }
        .faq-answer {
            padding: 1rem;
            background: rgba(13, 2, 33, 0.9);
            display: none;
        }
        .faq-answer.active {
            display: block;
        }
        .contact-form {
            max-width: 600px;
            margin: 0 auto;
            background: rgba(157, 0, 255, 0.1);
            padding: 2rem;
            border-radius: 10px;
            border: 1px solid var(--accent-purple);
        }
        .form-group {
            margin-bottom: 1.5rem;
        }
        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            color: var(--neon-blue);
        }
        .form-group input, .form-group textarea {
            width: 100%;
            padding: 0.8rem;
            background: rgba(255, 255, 255, 0.1);
            border: 1px solid var(--neon-blue);
            border-radius: 5px;
            color: white;
        }
        .form-group textarea {
            height: 150px;
            resize: vertical;
        }
        .popup {
            position: fixed;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            background: var(--dark-bg);
            padding: 2rem;
            border: 2px solid var(--neon-pink);
            border-radius: 10px;
            box-shadow: 0 0 20px var(--neon-pink);
            z-index: 1001;
            display: none;
        }
        .popup.active {
            display: block;
            animation: fadeIn 0.5s;
        }
        .overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.7);
            z-index: 1000;
            display: none;
        }
        .overlay.active {
            display: block;
        }
        .disclaimer {
            background: rgba(255, 42, 109, 0.1);
            padding: 1rem;
            border-top: 1px solid var(--neon-pink);
            text-align: center;
            font-size: 0.9rem;
        }
        .cookie-banner {
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            background: rgba(13, 2, 33, 0.9);
            padding: 1rem;
            border-top: 1px solid var(--neon-blue);
            display: flex;
            justify-content: space-between;
            align-items: center;
            z-index: 999;
        }
        .cookie-banner p {
            margin-right: 1rem;
        }
        .cookie-btn {
            background: var(--neon-pink);
            color: white;
            border: none;
            padding: 0.5rem 1rem;
            border-radius: 5px;
            cursor: pointer;
        }
        footer {
            background: rgba(9, 0, 26, 0.9);
            padding: 3rem 2rem;
            text-align: center;
        }
        .footer-links {
            display: flex;
            justify-content: center;
            gap: 2rem;
            margin-bottom: 2rem;
            flex-wrap: wrap;
        }
        .footer-links a {
            color: var(--text-light);
            text-decoration: none;
        }
        .footer-links a:hover {
            color: var(--neon-pink);
        }
        .contact-info {
            margin-bottom: 2rem;
        }
        .contact-info p {
            margin: 0.5rem 0;
        }
        .copyright {
            font-size: 0.9rem;
            opacity: 0.7;
        }

