:root {
            --primary: #ff00aa;
            --secondary: #00f0ff;
            --dark: #0a0a20;
            --light: #e0e0ff;
            --accent: #ffcc00;
        }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial', sans-serif;
        }
        body {
            background-color: var(--dark);
            color: var(--light);
            line-height: 1.6;
            padding-top: 80px;
        }
        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            background-color: rgba(10, 10, 32, 0.9);
            backdrop-filter: blur(10px);
            z-index: 1000;
            padding: 15px 0;
            border-bottom: 1px solid var(--primary);
        }
        .container {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
        }
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            font-size: 24px;
            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: 30px;
        }
        nav ul li a {
            color: var(--light);
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s;
        }
        nav ul li a:hover {
            color: var(--primary);
        }
        .burger {
            display: none;
            cursor: pointer;
        }
        .burger div {
            width: 25px;
            height: 3px;
            background-color: var(--light);
            margin: 5px;
            transition: all 0.3s ease;
        }
        section {
            padding: 80px 0;
        }
        h1, h2, h3 {
            margin-bottom: 20px;
            line-height: 1.2;
        }
        h1 {
            font-size: 48px;
            color: var(--primary);
        }
        h2 {
            font-size: 36px;
            color: var(--secondary);
        }
        h3 {
            font-size: 24px;
            color: var(--accent);
        }
        p {
            margin-bottom: 15px;
        }
        .btn {
            display: inline-block;
            padding: 12px 30px;
            background-color: var(--primary);
            color: var(--dark);
            text-decoration: none;
            border-radius: 30px;
            font-weight: bold;
            transition: all 0.3s;
            border: none;
            cursor: pointer;
        }
        .btn:hover {
            background-color: var(--accent);
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(255, 0, 170, 0.3);
        }
        .hero {
            background: linear-gradient(rgba(10, 10, 32, 0.8), rgba(10, 10, 32, 0.8)), url('../img/07.webp') no-repeat center center/cover;
            height: 80vh;
            display: flex;
            align-items: center;
            text-align: center;
        }
        .hero-content {
            max-width: 800px;
            margin: 0 auto;
        }
        .hero p {
            font-size: 20px;
            margin-bottom: 30px;
        }
        .about {
            background-color: var(--dark);
            text-align: center;
        }
        .about-content {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            margin-top: 50px;
        }
        .about-item {
            flex: 0 0 30%;
            margin-bottom: 30px;
            padding: 20px;
            background-color: rgba(0, 240, 255, 0.1);
            border-radius: 10px;
            transition: transform 0.3s;
        }
        .about-item:hover {
            transform: translateY(-10px);
        }
        .products {
            background-color: #0a0a30;
        }
        .product-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }
        .product-card {
            background-color: rgba(255, 0, 170, 0.1);
            border-radius: 10px;
            overflow: hidden;
            transition: transform 0.3s;
        }
        .product-card:hover {
            transform: scale(1.05);
        }
        .product-img {
            height: 200px;
            overflow: hidden;
        }
        .product-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s;
        }
        .product-card:hover .product-img img {
            transform: scale(1.1);
        }
        .product-info {
            padding: 20px;
        }
        .prices {
            text-align: center;
        }
        .price-cards {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 30px;
            margin-top: 50px;
        }
        .price-card {
            flex: 0 0 300px;
            background-color: rgba(0, 240, 255, 0.1);
            border-radius: 10px;
            padding: 30px;
            transition: transform 0.3s;
        }
        .price-card:hover {
            transform: translateY(-10px);
        }
        .price-card h3 {
            color: var(--primary);
        }
        .price {
            font-size: 36px;
            font-weight: bold;
            color: var(--accent);
            margin: 20px 0;
        }
        .price span {
            font-size: 16px;
            color: var(--light);
        }
        .gallery {
            background-color: var(--dark);
        }
        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
            margin-top: 50px;
        }
        .gallery-item {
            height: 250px;
            overflow: hidden;
            border-radius: 10px;
            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 {
            text-align: center;
            background-color: #0a0a30;
        }
        .feedback-slider {
            max-width: 800px;
            margin: 50px auto 0;
            position: relative;
            overflow: hidden;
        }
        .feedback-slide {
            padding: 30px;
            background-color: rgba(255, 0, 170, 0.1);
            border-radius: 10px;
            display: none;
        }
        .feedback-slide.active {
            display: block;
            animation: fadeIn 0.5s;
        }
        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }
        .client-info {
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
        }
        .client-img {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            overflow: hidden;
            margin-right: 20px;
        }
        .client-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        .slider-nav {
            margin-top: 30px;
            display: flex;
            justify-content: center;
        }
        .slider-dot {
            width: 12px;
            height: 12px;
            background-color: var(--light);
            border-radius: 50%;
            margin: 0 5px;
            cursor: pointer;
            opacity: 0.5;
            transition: all 0.3s;
        }
        .slider-dot.active {
            opacity: 1;
            background-color: var(--primary);
        }
        .faq {
            background-color: var(--dark);
        }
        .faq-container {
            max-width: 800px;
            margin: 50px auto 0;
        }
        .faq-item {
            margin-bottom: 15px;
            border: 1px solid rgba(0, 240, 255, 0.3);
            border-radius: 5px;
            overflow: hidden;
        }
        .faq-question {
            padding: 15px 20px;
            background-color: rgba(0, 240, 255, 0.1);
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .faq-answer {
            padding: 0 20px;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease-out;
        }
        .faq-item.active .faq-answer {
            padding: 15px 20px;
            max-height: 500px;
        }
        .contact-form {
            max-width: 600px;
            margin: 50px auto 0;
            background-color: rgba(255, 0, 170, 0.1);
            padding: 30px;
            border-radius: 10px;
        }
        .form-group {
            margin-bottom: 20px;
        }
        .form-group label {
            display: block;
            margin-bottom: 5px;
            color: var(--secondary);
        }
        .form-group input, .form-group textarea {
            width: 100%;
            padding: 12px;
            background-color: rgba(0, 240, 255, 0.1);
            border: 1px solid var(--secondary);
            border-radius: 5px;
            color: var(--light);
        }
        textarea {
            resize: vertical;
            min-height: 100px;
        }
        .modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(10, 10, 32, 0.9);
            z-index: 2000;
            justify-content: center;
            align-items: center;
        }
        .modal-content {
            background-color: var(--dark);
            padding: 30px;
            border-radius: 10px;
            max-width: 500px;
            text-align: center;
            border: 2px solid var(--primary);
        }
        .close-modal {
            margin-top: 20px;
        }
        .disclaimer {
            background-color: rgba(255, 204, 0, 0.1);
            padding: 20px;
            border-radius: 5px;
            margin-top: 50px;
            font-size: 14px;
        }
        footer {
            background-color: #0a0a20;
            padding: 50px 0 20px;
        }
        .footer-content {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            margin-bottom: 30px;
        }
        .footer-col {
            flex: 0 0 30%;
            margin-bottom: 30px;
        }
        .footer-col h3 {
            color: var(--secondary);
            margin-bottom: 20px;
        }
        .footer-links {
            list-style: none;
        }
        .footer-links li {
            margin-bottom: 10px;
        }
        .footer-links a {
            color: var(--light);
            text-decoration: none;
            transition: color 0.3s;
        }
        .footer-links a:hover {
            color: var(--primary);
        }
        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid rgba(0, 240, 255, 0.2);
        }
        .cookie-banner {
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            background-color: var(--dark);
            padding: 15px 0;
            border-top: 1px solid var(--primary);
            z-index: 1000;
            transform: translateY(100%);
            transition: transform 0.3s;
        }
        .cookie-banner.show {
            transform: translateY(0);
        }
        .cookie-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .cookie-btn {
            background-color: var(--primary);
            color: var(--dark);
            border: none;
            padding: 8px 20px;
            border-radius: 20px;
            cursor: pointer;
            font-weight: bold;
        }
        @media (max-width: 992px) {
            nav ul {
                position: fixed;
                top: 80px;
                left: -100%;
                width: 100%;
                height: calc(100vh - 80px);
                background-color: var(--dark);
                flex-direction: column;
                align-items: center;
                justify-content: center;
                transition: left 0.5s;
            }
            nav ul.active {
                left: 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-item {
                flex: 0 0 100%;
            }
            .footer-col {
                flex: 0 0 100%;
            }
        }
        @media (max-width: 768px) {
            h1 {
                font-size: 36px;
            }
            h2 {
                font-size: 30px;
            }
            .hero {
                height: auto;
                padding: 100px 0;
            }
            .price-cards {
                flex-direction: column;
                align-items: center;
            }
            .cookie-content {
                flex-direction: column;
                text-align: center;
            }
            .cookie-btn {
                margin-top: 15px;
            }
        }

