:root {
            --neon-pink: #ff2a6d;
            --neon-blue: #05d9e8;
            --dark-bg: #0d0221;
            --text-light: #d1f7ff;
            --accent-purple: #d300c5;
        }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial', sans-serif;
        }
        body {
            background-color: var(--dark-bg);
            color: var(--text-light);
            line-height: 1.6;
            padding-top: 80px;
            overflow-x: hidden;
        }
        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            background-color: rgba(13, 2, 33, 0.9);
            z-index: 1000;
            padding: 15px 0;
            border-bottom: 1px solid var(--neon-pink);
            box-shadow: 0 0 15px var(--neon-blue);
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .logo {
            font-size: 28px;
            font-weight: bold;
            color: var(--neon-pink);
            text-shadow: 0 0 5px var(--neon-pink);
        }
        .logo span {
            color: var(--neon-blue);
            text-shadow: 0 0 5px var(--neon-blue);
        }
        nav ul {
            display: flex;
            list-style: none;
        }
        nav ul li {
            margin-left: 30px;
        }
        nav ul li a {
            color: var(--text-light);
            text-decoration: none;
            font-size: 18px;
            transition: all 0.3s;
            position: relative;
        }
        nav ul li a:hover {
            color: var(--neon-blue);
            text-shadow: 0 0 5px var(--neon-blue);
        }
        nav ul li a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background-color: var(--neon-pink);
            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(--neon-blue);
            margin: 5px;
            transition: all 0.3s;
        }
        section {
            padding: 80px 20px;
            max-width: 1200px;
            margin: 0 auto;
        }
        h1, h2, h3 {
            margin-bottom: 20px;
        }
        h1 {
            font-size: 48px;
            color: var(--neon-pink);
            text-shadow: 0 0 10px var(--neon-pink);
        }
        h2 {
            font-size: 36px;
            color: var(--neon-blue);
            text-shadow: 0 0 8px var(--neon-blue);
        }
        h3 {
            font-size: 24px;
            color: var(--accent-purple);
        }
        p {
            margin-bottom: 15px;
            font-size: 18px;
        }
        .btn {
            display: inline-block;
            padding: 12px 30px;
            background-color: var(--neon-pink);
            color: var(--dark-bg);
            text-decoration: none;
            border-radius: 5px;
            font-weight: bold;
            margin-top: 20px;
            transition: all 0.3s;
            border: none;
            cursor: pointer;
            font-size: 18px;
            box-shadow: 0 0 10px var(--neon-pink);
        }
        .btn:hover {
            background-color: var(--neon-blue);
            color: var(--dark-bg);
            box-shadow: 0 0 15px var(--neon-blue);
            transform: translateY(-3px);
        }
        .hero {
            height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            background: linear-gradient(rgba(13, 2, 33, 0.7), rgba(13, 2, 33, 0.9)), url('https://images.unsplash.com/photo-1545205597-3d9d02c29597') no-repeat center center/cover;
            position: relative;
            overflow: hidden;
        }
        .hero-content {
            max-width: 800px;
            z-index: 1;
        }
        .hero h1 {
            animation: glow 2s infinite alternate;
        }
        @keyframes glow {
            from {
                text-shadow: 0 0 10px var(--neon-pink);
            }
            to {
                text-shadow: 0 0 20px var(--neon-pink), 0 0 30px var(--accent-purple);
            }
        }
        .about {
            background-color: rgba(5, 217, 232, 0.05);
            border-top: 1px solid var(--neon-blue);
            border-bottom: 1px solid var(--neon-blue);
        }
        .about-content {
            display: flex;
            align-items: center;
            gap: 40px;
        }
        .about-text {
            flex: 1;
        }
        .about-image {
            flex: 1;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 0 20px var(--neon-blue);
        }
        .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-color: rgba(255, 42, 109, 0.1);
            border: 1px solid var(--neon-pink);
            border-radius: 10px;
            padding: 25px;
            transition: all 0.3s;
            box-shadow: 0 0 15px rgba(255, 42, 109, 0.2);
        }
        .product-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 0 25px var(--neon-pink);
        }
        .product-card h3 {
            color: var(--neon-blue);
        }
        .prices {
            background-color: rgba(211, 0, 197, 0.05);
            border-top: 1px solid var(--accent-purple);
            border-bottom: 1px solid var(--accent-purple);
        }
        .price-cards {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }
        .price-card {
            background-color: rgba(5, 217, 232, 0.1);
            border: 1px solid var(--neon-blue);
            border-radius: 10px;
            padding: 30px;
            text-align: center;
            transition: all 0.3s;
        }
        .price-card.popular {
            transform: scale(1.05);
            background-color: rgba(255, 42, 109, 0.2);
            border-color: var(--neon-pink);
            position: relative;
        }
        .price-card.popular::before {
            content: 'POPULAR';
            position: absolute;
            top: -15px;
            right: 20px;
            background-color: var(--neon-pink);
            color: var(--dark-bg);
            padding: 5px 15px;
            border-radius: 20px;
            font-size: 14px;
            font-weight: bold;
        }
        .price-card h3 {
            font-size: 28px;
            margin-bottom: 15px;
        }
        .price {
            font-size: 36px;
            font-weight: bold;
            color: var(--neon-blue);
            margin: 20px 0;
        }
        .price span {
            font-size: 16px;
            color: var(--text-light);
        }
        .gallery {
            text-align: center;
        }
        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
            margin-top: 40px;
        }
        .gallery-item {
            position: relative;
            overflow: hidden;
            border-radius: 10px;
            height: 250px;
            box-shadow: 0 0 15px rgba(5, 217, 232, 0.3);
        }
        .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: rgba(255, 42, 109, 0.05);
            border-top: 1px solid var(--neon-pink);
            border-bottom: 1px solid var(--neon-pink);
        }
        .feedback-slider {
            position: relative;
            max-width: 800px;
            margin: 40px auto 0;
            overflow: hidden;
        }
        .slides {
            display: flex;
            transition: transform 0.5s ease;
        }
        .slide {
            min-width: 100%;
            padding: 30px;
            background-color: rgba(13, 2, 33, 0.7);
            border: 1px solid var(--neon-blue);
            border-radius: 10px;
            box-shadow: 0 0 20px rgba(5, 217, 232, 0.3);
        }
        .client-info {
            display: flex;
            align-items: center;
            margin-bottom: 20px;
        }
        .client-info img {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            object-fit: cover;
            margin-right: 15px;
            border: 2px solid var(--neon-pink);
        }
        .client-name {
            font-weight: bold;
            color: var(--neon-blue);
        }
        .controls {
            display: flex;
            justify-content: center;
            margin-top: 20px;
        }
        .controls button {
            background-color: transparent;
            border: 1px solid var(--neon-blue);
            color: var(--neon-blue);
            width: 40px;
            height: 40px;
            border-radius: 50%;
            margin: 0 10px;
            cursor: pointer;
            transition: all 0.3s;
        }
        .controls button:hover {
            background-color: var(--neon-blue);
            color: var(--dark-bg);
        }
        .faq-item {
            margin-bottom: 20px;
            border: 1px solid var(--neon-blue);
            border-radius: 10px;
            overflow: hidden;
        }
        .faq-question {
            background-color: rgba(5, 217, 232, 0.1);
            padding: 15px 20px;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-weight: bold;
        }
        .faq-question:hover {
            background-color: rgba(5, 217, 232, 0.2);
        }
        .faq-answer {
            padding: 0 20px;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease, padding 0.3s ease;
        }
        .faq-item.active .faq-answer {
            padding: 20px;
            max-height: 500px;
        }
        .contact-form {
            max-width: 600px;
            margin: 40px auto 0;
        }
        .form-group {
            margin-bottom: 20px;
        }
        .form-group label {
            display: block;
            margin-bottom: 8px;
            color: var(--neon-blue);
        }
        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 12px;
            background-color: rgba(5, 217, 232, 0.1);
            border: 1px solid var(--neon-blue);
            border-radius: 5px;
            color: var(--text-light);
            font-size: 16px;
        }
        .form-group textarea {
            height: 150px;
            resize: vertical;
        }
        footer {
            background-color: rgba(13, 2, 33, 0.95);
            padding: 50px 20px 20px;
            border-top: 1px solid var(--neon-pink);
        }
        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 40px;
        }
        .footer-logo {
            font-size: 24px;
            font-weight: bold;
            color: var(--neon-pink);
            margin-bottom: 15px;
        }
        .footer-links h3 {
            color: var(--neon-blue);
            margin-bottom: 20px;
            font-size: 20px;
        }
        .footer-links ul {
            list-style: none;
        }
        .footer-links ul li {
            margin-bottom: 10px;
        }
        .footer-links ul li a {
            color: var(--text-light);
            text-decoration: none;
            transition: color 0.3s;
        }
        .footer-links ul li a:hover {
            color: var(--neon-blue);
        }
        .contact-info p {
            display: flex;
            align-items: center;
            margin-bottom: 15px;
        }
        .contact-info i {
            margin-right: 10px;
            color: var(--neon-blue);
        }
        .copyright {
            text-align: center;
            margin-top: 40px;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 42, 109, 0.3);
        }
        .disclaimer {
            font-size: 14px;
            color: rgba(209, 247, 255, 0.6);
            margin-top: 40px;
            padding: 20px;
            background-color: rgba(255, 42, 109, 0.05);
            border-radius: 5px;
        }
        .cookie-banner {
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            background-color: rgba(13, 2, 33, 0.95);
            padding: 20px;
            border-top: 1px solid var(--neon-blue);
            display: flex;
            justify-content: space-between;
            align-items: center;
            z-index: 1000;
            transform: translateY(100%);
            transition: transform 0.3s;
        }
        .cookie-banner.show {
            transform: translateY(0);
        }
        .cookie-banner p {
            flex: 1;
            margin-right: 20px;
        }
        .cookie-banner button {
            background-color: var(--neon-pink);
            color: var(--dark-bg);
            border: none;
            padding: 10px 20px;
            border-radius: 5px;
            cursor: pointer;
            font-weight: bold;
            transition: all 0.3s;
        }
        .cookie-banner button:hover {
            background-color: var(--neon-blue);
        }
        .modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(13, 2, 33, 0.9);
            z-index: 2000;
            justify-content: center;
            align-items: center;
        }
        .modal-content {
            background-color: var(--dark-bg);
            padding: 40px;
            border-radius: 10px;
            text-align: center;
            max-width: 500px;
            border: 1px solid var(--neon-pink);
            box-shadow: 0 0 30px var(--accent-purple);
            position: relative;
        }
        .close-modal {
            position: absolute;
            top: 15px;
            right: 15px;
            font-size: 24px;
            color: var(--neon-blue);
            cursor: pointer;
            transition: color 0.3s;
        }
        .close-modal:hover {
            color: var(--neon-pink);
        }
        @media (max-width: 768px) {
            nav ul {
                position: fixed;
                top: 80px;
                right: -100%;
                width: 100%;
                height: calc(100vh - 80px);
                background-color: rgba(13, 2, 33, 0.95);
                flex-direction: column;
                align-items: center;
                justify-content: center;
                transition: right 0.5s;
                z-index: 999;
            }
            nav ul.active {
                right: 0;
            }
            nav ul li {
                margin: 20px 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);
            }
            .about-content {
                flex-direction: column;
            }
            .hero h1 {
                font-size: 36px;
            }
            h2 {
                font-size: 30px;
            }
            .price-card.popular {
                transform: scale(1);
            }
        }

