:root {
            --primary-color: #00ffcc;
            --secondary-color: #ff00ff;
            --dark-bg: #0a0a14;
            --darker-bg: #05050a;
            --light-text: #e0e0ff;
            --accent-color: #ff0099;
            --card-bg: rgba(15, 15, 30, 0.8);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Arial', sans-serif;
            background-color: var(--dark-bg);
            color: var(--light-text);
            line-height: 1.6;
            overflow-x: hidden;
        }

        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            background-color: rgba(5, 5, 10, 0.9);
            backdrop-filter: blur(10px);
            z-index: 1000;
            padding: 15px 0;
            border-bottom: 1px solid var(--primary-color);
            box-shadow: 0 0 20px rgba(0, 255, 204, 0.3);
        }

        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-size: 24px;
            font-weight: bold;
            color: var(--primary-color);
            text-decoration: none;
            text-transform: uppercase;
            letter-spacing: 2px;
        }

        .logo span {
            color: var(--secondary-color);
        }

        .nav-menu {
            display: flex;
            list-style: none;
        }

        .nav-menu li {
            margin-left: 30px;
        }

        .nav-menu a {
            color: var(--light-text);
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s;
            position: relative;
        }

        .nav-menu a:hover {
            color: var(--primary-color);
        }

        .nav-menu a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background-color: var(--primary-color);
            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 {
            width: 100%;
            height: 3px;
            background-color: var(--primary-color);
            transition: all 0.3s;
        }

        .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);
        }

        main {
            margin-top: 80px;
        }

        .hero {
            padding: 100px 0;
            background: linear-gradient(135deg, rgba(10, 10, 20, 0.9), rgba(5, 5, 10, 0.9)), url('../img/06.webp');
            background-size: cover;
            background-position: center;
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle at 20% 50%, rgba(0, 255, 204, 0.1) 0%, transparent 50%);
            z-index: 0;
        }

        .hero-content {
            position: relative;
            z-index: 1;
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            max-width: 600px;
        }

        .hero h1 {
            font-size: 48px;
            margin-bottom: 20px;
            line-height: 1.2;
            color: var(--primary-color);
            text-shadow: 0 0 10px rgba(0, 255, 204, 0.5);
            animation: glow 2s infinite alternate;
        }

        @keyframes glow {
            from {
                text-shadow: 0 0 10px rgba(0, 255, 204, 0.5);
            }
            to {
                text-shadow: 0 0 20px rgba(0, 255, 204, 0.8), 0 0 30px rgba(0, 255, 204, 0.6);
            }
        }

        .hero p {
            font-size: 18px;
            margin-bottom: 30px;
            color: var(--light-text);
        }

        .btn {
            display: inline-block;
            padding: 12px 30px;
            background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
            color: var(--darker-bg);
            text-decoration: none;
            border-radius: 30px;
            font-weight: bold;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: all 0.3s;
            box-shadow: 0 0 15px rgba(0, 255, 204, 0.5);
        }

        .btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 5px 20px rgba(0, 255, 204, 0.7);
        }

        .about {
            padding: 80px 0;
            background-color: var(--darker-bg);
        }

        .section-title {
            font-size: 36px;
            margin-bottom: 40px;
            text-align: center;
            color: var(--primary-color);
            position: relative;
            display: inline-block;
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 3px;
            background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
        }

        .about-content {
            display: flex;
            align-items: center;
            gap: 50px;
        }

        .about-text {
            flex: 1;
        }

        .about-text p {
            margin-bottom: 20px;
            color: var(--light-text);
        }

        .about-image {
            flex: 1;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 0 30px rgba(255, 0, 255, 0.3);
        }

        .about-image img {
            width: 100%;
            height: auto;
            display: block;
            transition: transform 0.5s;
        }

        .about-image:hover img {
            transform: scale(1.05);
        }

        .products {
            padding: 80px 0;
            background-color: var(--dark-bg);
        }

        .products-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }

        .product-card {
            background-color: var(--card-bg);
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 0 20px rgba(255, 0, 153, 0.2);
            transition: all 0.3s;
            border: 1px solid rgba(255, 0, 153, 0.3);
        }

        .product-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 10px 30px rgba(255, 0, 153, 0.4);
        }

        .product-image {
            height: 200px;
            overflow: hidden;
        }

        .product-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s;
        }

        .product-card:hover .product-image img {
            transform: scale(1.1);
        }

        .product-info {
            padding: 20px;
        }

        .product-info h3 {
            font-size: 22px;
            margin-bottom: 15px;
            color: var(--primary-color);
        }

        .product-info p {
            color: var(--light-text);
            margin-bottom: 20px;
        }

        .prices {
            padding: 80px 0;
            background-color: var(--darker-bg);
        }

        .prices-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }

        .price-card {
            background-color: var(--card-bg);
            border-radius: 10px;
            padding: 30px;
            text-align: center;
            box-shadow: 0 0 20px rgba(0, 255, 204, 0.2);
            transition: all 0.3s;
            border: 1px solid rgba(0, 255, 204, 0.3);
            position: relative;
            overflow: hidden;
        }

        .price-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
        }

        .price-card.featured {
            transform: scale(1.05);
            box-shadow: 0 0 30px rgba(255, 0, 255, 0.4);
            border: 1px solid rgba(255, 0, 255, 0.5);
        }

        .price-card.featured::before {
            background: linear-gradient(90deg, var(--secondary-color), var(--accent-color));
        }

        .price-card h3 {
            font-size: 24px;
            margin-bottom: 15px;
            color: var(--primary-color);
        }

        .price {
            font-size: 36px;
            font-weight: bold;
            color: var(--secondary-color);
            margin-bottom: 20px;
        }

        .price-card ul {
            list-style: none;
            margin-bottom: 30px;
        }

        .price-card li {
            padding: 10px 0;
            border-bottom: 1px solid rgba(224, 224, 255, 0.1);
            color: var(--light-text);
        }

        .price-card li:last-child {
            border-bottom: none;
        }

        .gallery {
            padding: 80px 0;
            background-color: var(--dark-bg);
        }

        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 20px;
            margin-top: 50px;
        }

        .gallery-item {
            height: 250px;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 0 20px rgba(0, 255, 204, 0.2);
            transition: all 0.3s;
            position: relative;
        }

        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s;
        }

        .gallery-item:hover {
            transform: scale(1.03);
            box-shadow: 0 10px 30px rgba(0, 255, 204, 0.4);
        }

        .gallery-item:hover img {
            transform: scale(1.1);
        }

        .feedback {
            padding: 80px 0;
            background-color: var(--darker-bg);
        }

        .feedback-slider {
            position: relative;
            margin-top: 50px;
            overflow: hidden;
        }

        .feedback-container {
            display: flex;
            transition: transform 0.5s ease;
        }

        .feedback-card {
            min-width: 100%;
            padding: 30px;
            background-color: var(--card-bg);
            border-radius: 10px;
            box-shadow: 0 0 20px rgba(255, 0, 153, 0.2);
            border: 1px solid rgba(255, 0, 153, 0.3);
        }

        .feedback-card p {
            font-style: italic;
            margin-bottom: 20px;
            color: var(--light-text);
        }

        .feedback-author {
            display: flex;
            align-items: center;
        }

        .feedback-author img {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            margin-right: 15px;
            object-fit: cover;
        }

        .feedback-author-info h4 {
            font-size: 18px;
            color: var(--primary-color);
            margin-bottom: 5px;
        }

        .feedback-author-info p {
            font-size: 14px;
            color: var(--light-text);
            margin: 0;
        }

        .slider-controls {
            display: flex;
            justify-content: center;
            margin-top: 30px;
            gap: 15px;
        }

        .slider-btn {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background-color: var(--card-bg);
            border: 1px solid var(--primary-color);
            color: var(--primary-color);
            font-size: 20px;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s;
        }

        .slider-btn:hover {
            background-color: var(--primary-color);
            color: var(--darker-bg);
        }

        .faq {
            padding: 80px 0;
            background-color: var(--dark-bg);
        }

        .faq-container {
            max-width: 800px;
            margin: 0 auto;
            margin-top: 50px;
        }

        .faq-item {
            margin-bottom: 20px;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 0 20px rgba(0, 255, 204, 0.2);
        }

        .faq-question {
            padding: 20px;
            background-color: var(--card-bg);
            border: 1px solid rgba(0, 255, 204, 0.3);
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: all 0.3s;
        }

        .faq-question:hover {
            background-color: rgba(0, 255, 204, 0.1);
        }

        .faq-question h3 {
            font-size: 18px;
            color: var(--primary-color);
        }

        .faq-icon {
            font-size: 24px;
            color: var(--primary-color);
            transition: transform 0.3s;
        }

        .faq-answer {
            padding: 0 20px;
            max-height: 0;
            overflow: hidden;
            background-color: var(--card-bg);
            transition: all 0.3s;
        }

        .faq-answer p {
            padding: 20px 0;
            color: var(--light-text);
        }

        .faq-item.active .faq-answer {
            max-height: 300px;
        }

        .faq-item.active .faq-icon {
            transform: rotate(45deg);
        }

        .contact {
            padding: 80px 0;
            background-color: var(--darker-bg);
        }

        .contact-form {
            max-width: 600px;
            margin: 0 auto;
            margin-top: 50px;
            background-color: var(--card-bg);
            padding: 40px;
            border-radius: 10px;
            box-shadow: 0 0 30px rgba(255, 0, 153, 0.3);
            border: 1px solid rgba(255, 0, 153, 0.4);
        }

        .form-group {
            margin-bottom: 25px;
        }

        .form-group label {
            display: block;
            margin-bottom: 10px;
            color: var(--primary-color);
            font-weight: 500;
        }

        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 12px 15px;
            background-color: var(--darker-bg);
            border: 1px solid rgba(0, 255, 204, 0.3);
            border-radius: 5px;
            color: var(--light-text);
            font-family: inherit;
            transition: all 0.3s;
        }

        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--primary-color);
            box-shadow: 0 0 10px rgba(0, 255, 204, 0.3);
        }

        .form-group textarea {
            resize: vertical;
            min-height: 150px;
        }

        .form-submit {
            display: block;
            width: 100%;
            padding: 15px;
            background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
            color: var(--darker-bg);
            border: none;
            border-radius: 5px;
            font-weight: bold;
            font-size: 16px;
            cursor: pointer;
            transition: all 0.3s;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .form-submit:hover {
            transform: translateY(-3px);
            box-shadow: 0 5px 20px rgba(0, 255, 204, 0.5);
        }

        .disclaimer {
            padding: 30px 0;
            background-color: var(--darker-bg);
            text-align: center;
            font-size: 14px;
            color: rgba(224, 224, 255, 0.7);
        }

        footer {
            padding: 50px 0;
            background-color: var(--dark-bg);
            border-top: 1px solid var(--primary-color);
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
        }

        .footer-column h3 {
            font-size: 20px;
            margin-bottom: 20px;
            color: var(--primary-color);
        }

        .footer-column ul {
            list-style: none;
        }

        .footer-column ul li {
            margin-bottom: 10px;
        }

        .footer-column ul li a {
            color: var(--light-text);
            text-decoration: none;
            transition: color 0.3s;
        }

        .footer-column ul li a:hover {
            color: var(--primary-color);
        }

        .footer-column p {
            color: var(--light-text);
            margin-bottom: 10px;
        }

        .copyright {
            margin-top: 40px;
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid rgba(224, 224, 255, 0.1);
            color: rgba(224, 224, 255, 0.7);
            font-size: 14px;
        }

        .cookie-banner {
            position: fixed;
            bottom: 20px;
            left: 20px;
            right: 20px;
            background-color: var(--card-bg);
            border-radius: 10px;
            padding: 20px;
            box-shadow: 0 0 30px rgba(255, 0, 153, 0.4);
            border: 1px solid rgba(255, 0, 153, 0.5);
            display: flex;
            justify-content: space-between;
            align-items: center;
            z-index: 1001;
            transform: translateY(150%);
            transition: transform 0.5s;
        }

        .cookie-banner.active {
            transform: translateY(0);
        }

        .cookie-text {
            flex: 1;
            margin-right: 20px;
            color: var(--light-text);
        }

        .cookie-text a {
            color: var(--primary-color);
            text-decoration: none;
        }

        .cookie-buttons {
            display: flex;
            gap: 10px;
        }

        .cookie-btn {
            padding: 10px 20px;
            border-radius: 5px;
            cursor: pointer;
            font-weight: 500;
            transition: all 0.3s;
            border: none;
        }

        .cookie-accept {
            background-color: var(--primary-color);
            color: var(--darker-bg);
        }

        .cookie-accept:hover {
            background-color: var(--secondary-color);
        }

        .cookie-reject {
            background-color: transparent;
            color: var(--light-text);
            border: 1px solid var(--light-text);
        }

        .cookie-reject:hover {
            background-color: rgba(224, 224, 255, 0.1);
        }

        .modal {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.8);
            display: flex;
            justify-content: center;
            align-items: center;
            z-index: 2000;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s;
        }

        .modal.active {
            opacity: 1;
            visibility: visible;
        }

        .modal-content {
            background-color: var(--card-bg);
            border-radius: 10px;
            padding: 40px;
            max-width: 500px;
            width: 90%;
            text-align: center;
            box-shadow: 0 0 30px rgba(0, 255, 204, 0.5);
            border: 1px solid rgba(0, 255, 204, 0.6);
            transform: scale(0.8);
            transition: transform 0.3s;
        }

        .modal.active .modal-content {
            transform: scale(1);
        }

        .modal-content h3 {
            font-size: 24px;
            margin-bottom: 20px;
            color: var(--primary-color);
        }

        .modal-content p {
            margin-bottom: 30px;
            color: var(--light-text);
        }

        .modal-close {
            padding: 10px 30px;
            background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
            color: var(--darker-bg);
            border: none;
            border-radius: 5px;
            cursor: pointer;
            font-weight: bold;
            transition: all 0.3s;
        }

        .modal-close:hover {
            transform: translateY(-3px);
            box-shadow: 0 5px 20px rgba(0, 255, 204, 0.5);
        }

        @media (max-width: 768px) {
            .nav-menu {
                position: fixed;
                top: 70px;
                left: 0;
                width: 100%;
                background-color: rgba(5, 5, 10, 0.95);
                flex-direction: column;
                align-items: center;
                padding: 20px 0;
                transform: translateY(-150%);
                transition: transform 0.3s;
                box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
            }

            .nav-menu.active {
                transform: translateY(0);
            }

            .nav-menu li {
                margin: 15px 0;
            }

            .burger {
                display: flex;
            }

            .hero h1 {
                font-size: 36px;
            }

            .about-content {
                flex-direction: column;
            }

            .cookie-banner {
                flex-direction: column;
            }

            .cookie-text {
                margin-right: 0;
                margin-bottom: 20px;
            }
        }

