:root {
            --primary-color: #00d4ff;
            --secondary-color: #ff00ff;
            --accent-color: #00ff88;
            --dark-color: #0a0a0a;
            --light-color: #e0e0e0;
            --text-color: #ffffff;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Arial', sans-serif;
            background-color: var(--dark-color);
            color: var(--text-color);
            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(10, 10, 10, 0.95);
            backdrop-filter: blur(10px);
            z-index: 1000;
            padding: 15px 0;
            box-shadow: 0 2px 20px rgba(0, 212, 255, 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;
            letter-spacing: 1px;
        }
        
        .logo:hover {
            color: var(--secondary-color);
        }
        
        nav ul {
            display: flex;
            list-style: none;
        }
        
        nav ul li {
            margin-left: 30px;
        }
        
        nav ul li a {
            color: var(--text-color);
            text-decoration: none;
            font-size: 16px;
            transition: all 0.3s ease;
            position: relative;
        }
        
        nav ul li a:hover {
            color: var(--primary-color);
        }
        
        nav ul li a::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: -5px;
            left: 0;
            background-color: var(--primary-color);
            transition: width 0.3s ease;
        }
        
        nav ul li a:hover::after {
            width: 100%;
        }
        
        .burger-menu {
            display: none;
            flex-direction: column;
            cursor: pointer;
        }
        
        .burger-menu span {
            width: 25px;
            height: 3px;
            background-color: var(--text-color);
            margin: 3px 0;
            transition: 0.3s;
        }
        
        .hero {
            height: 100vh;
            background: linear-gradient(rgba(10, 10, 10, 0.7), rgba(10, 10, 10, 0.7)), url('../img/01.webp');
            background-size: cover;
            background-position: center;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            position: relative;
        }
        
        .hero-content {
            position: relative;
            z-index: 2;
            max-width: 800px;
            padding: 0 20px;
        }
        
        .hero h1 {
            font-size: 60px;
            margin-bottom: 20px;
            color: var(--primary-color);
            font-weight: 700;
            letter-spacing: 2px;
        }
        
        .hero p {
            font-size: 20px;
            margin-bottom: 30px;
            color: var(--light-color);
        }
        
        .btn {
            display: inline-block;
            padding: 12px 30px;
            background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
            color: white;
            text-decoration: none;
            border-radius: 30px;
            font-weight: bold;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
            font-size: 16px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        .btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(0, 212, 255, 0.6);
        }
        
        .about {
            padding: 100px 0;
            background-color: var(--dark-color);
            position: relative;
        }
        
        .section-title {
            text-align: center;
            font-size: 40px;
            margin-bottom: 50px;
            color: var(--primary-color);
            text-transform: uppercase;
            letter-spacing: 2px;
        }
        
        .about-content {
            display: flex;
            align-items: center;
            gap: 50px;
        }
        
        .about-text {
            flex: 1;
        }
        
        .about-text h2 {
            font-size: 30px;
            margin-bottom: 20px;
            color: var(--secondary-color);
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        .about-text p {
            margin-bottom: 20px;
            color: var(--light-color);
        }
        
        .about-image {
            flex: 1;
            position: relative;
            overflow: hidden;
            border-radius: 5px;
        }
        
        .about-image img {
            width: 100%;
            height: auto;
            display: block;
            transition: transform 0.5s ease;
        }
        
        .about-image:hover img {
            transform: scale(1.05);
        }
        
        .products {
            padding: 100px 0;
            background: linear-gradient(135deg, rgba(10, 10, 10, 0.9), rgba(20, 20, 30, 0.9));
            position: relative;
        }
        
        .products-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }
        
        .product-card {
            background: rgba(20, 20, 30, 0.7);
            border-radius: 5px;
            overflow: hidden;
            transition: all 0.3s ease;
            position: relative;
        }
        
        .product-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0, 212, 255, 0.4);
        }
        
        .product-image {
            height: 200px;
            overflow: hidden;
        }
        
        .product-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .product-card:hover .product-image img {
            transform: scale(1.1);
        }
        
        .product-info {
            padding: 20px;
        }
        
        .product-info h3 {
            font-size: 24px;
            margin-bottom: 15px;
            color: var(--primary-color);
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        .product-info p {
            margin-bottom: 20px;
            color: var(--light-color);
        }
        
        .prices {
            padding: 100px 0;
            background-color: var(--dark-color);
        }
        
        .prices-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }
        
        .price-card {
            background: rgba(20, 20, 30, 0.7);
            border-radius: 5px;
            padding: 30px;
            text-align: center;
            transition: all 0.3s ease;
            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:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0, 212, 255, 0.4);
        }
        
        .price-card h3 {
            font-size: 24px;
            margin-bottom: 15px;
            color: var(--primary-color);
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        .price {
            font-size: 40px;
            font-weight: bold;
            margin: 20px 0;
            color: var(--secondary-color);
        }
        
        .price-card p {
            margin-bottom: 20px;
            color: var(--light-color);
        }
        
        .price-card ul {
            list-style: none;
            margin-bottom: 30px;
            text-align: left;
        }
        
        .price-card ul li {
            margin-bottom: 10px;
            padding-left: 20px;
            position: relative;
            color: var(--light-color);
        }
        
        .price-card ul li::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: var(--accent-color);
        }
        
        .gallery {
            padding: 100px 0;
            background: linear-gradient(135deg, rgba(10, 10, 10, 0.9), rgba(20, 20, 30, 0.9));
        }
        
        .gallery-container {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 20px;
        }
        
        .gallery-item {
            position: relative;
            overflow: hidden;
            border-radius: 5px;
            height: 250px;
        }
        
        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .gallery-item:hover img {
            transform: scale(1.1);
        }
        
        .gallery-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(10, 10, 10, 0.7);
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: opacity 0.3s ease;
        }
        
        .gallery-item:hover .gallery-overlay {
            opacity: 1;
        }
        
        .gallery-overlay p {
            color: white;
            font-size: 18px;
            text-align: center;
            padding: 0 20px;
        }
        
        .feedback {
            padding: 100px 0;
            background-color: var(--dark-color);
        }
        
        .feedback-container {
            position: relative;
            overflow: hidden;
        }
        
        .feedback-slider {
            display: flex;
            transition: transform 0.5s ease;
        }
        
        .feedback-card {
            min-width: 100%;
            padding: 0 20px;
        }
        
        .feedback-content {
            background: rgba(20, 20, 30, 0.7);
            border-radius: 5px;
            padding: 30px;
            max-width: 800px;
            margin: 0 auto;
        }
        
        .feedback-text {
            font-style: italic;
            margin-bottom: 20px;
            color: var(--light-color);
            font-size: 18px;
            line-height: 1.8;
        }
        
        .feedback-author {
            display: flex;
            align-items: center;
        }
        
        .author-image {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            overflow: hidden;
            margin-right: 15px;
        }
        
        .author-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .author-info h4 {
            font-size: 18px;
            margin-bottom: 5px;
            color: var(--primary-color);
        }
        
        .author-info p {
            color: var(--light-color);
            font-size: 14px;
        }
        
        .feedback-controls {
            display: flex;
            justify-content: center;
            margin-top: 30px;
            gap: 20px;
        }
        
        .feedback-btn {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: rgba(20, 20, 30, 0.7);
            border: 2px solid var(--primary-color);
            color: var(--primary-color);
            font-size: 20px;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .feedback-btn:hover {
            background: var(--primary-color);
            color: var(--dark-color);
        }
        
        .faq {
            padding: 100px 0;
            background: linear-gradient(135deg, rgba(10, 10, 10, 0.9), rgba(20, 20, 30, 0.9));
        }
        
        .faq-container {
            max-width: 800px;
            margin: 0 auto;
        }
        
        .faq-item {
            background: rgba(20, 20, 30, 0.7);
            border-radius: 5px;
            margin-bottom: 15px;
            overflow: hidden;
        }
        
        .faq-question {
            padding: 20px;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            background: rgba(20, 20, 30, 0.7);
            transition: background 0.3s ease;
        }
        
        .faq-question:hover {
            background: rgba(30, 30, 40, 0.7);
        }
        
        .faq-question h3 {
            font-size: 18px;
            color: var(--primary-color);
        }
        
        .faq-icon {
            font-size: 20px;
            color: var(--primary-color);
            transition: transform 0.3s ease;
        }
        
        .faq-answer {
            padding: 0 20px;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease, padding 0.3s ease;
            color: var(--light-color);
        }
        
        .faq-item.active .faq-answer {
            padding: 20px;
            max-height: 300px;
        }
        
        .faq-item.active .faq-icon {
            transform: rotate(45deg);
        }
        
        .contact {
            padding: 100px 0;
            background-color: var(--dark-color);
        }
        
        .contact-form {
            max-width: 600px;
            margin: 0 auto;
            background: rgba(20, 20, 30, 0.7);
            padding: 40px;
            border-radius: 5px;
        }
        
        .form-group {
            margin-bottom: 20px;
        }
        
        .form-group label {
            display: block;
            margin-bottom: 10px;
            color: var(--primary-color);
            font-weight: bold;
        }
        
        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 12px;
            background: rgba(10, 10, 10, 0.7);
            border: 1px solid rgba(0, 212, 255, 0.3);
            border-radius: 5px;
            color: var(--light-color);
            font-size: 16px;
            transition: all 0.3s ease;
        }
        
        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--primary-color);
            box-shadow: 0 0 10px rgba(0, 212, 255, 0.3);
        }
        
        .form-group textarea {
            resize: vertical;
            min-height: 120px;
        }
        
        footer {
            background: rgba(10, 10, 10, 0.9);
            padding: 50px 0 20px;
            border-top: 1px solid rgba(0, 212, 255, 0.2);
        }
        
        .footer-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-bottom: 30px;
        }
        
        .footer-column h3 {
            font-size: 20px;
            margin-bottom: 20px;
            color: var(--primary-color);
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        .footer-column ul {
            list-style: none;
        }
        
        .footer-column ul li {
            margin-bottom: 10px;
        }
        
        .footer-column ul li a {
            color: var(--light-color);
            text-decoration: none;
            transition: color 0.3s ease;
        }
        
        .footer-column ul li a:hover {
            color: var(--primary-color);
        }
        
        .footer-bottom {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid rgba(0, 212, 255, 0.2);
            color: var(--light-color);
            font-size: 14px;
        }
        
        .disclaimer {
            background: rgba(20, 20, 30, 0.7);
            padding: 20px;
            border-radius: 5px;
            margin: 30px 0;
            text-align: center;
            color: var(--light-color);
            font-size: 14px;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
        }
        
        .cookie-banner {
            position: fixed;
            bottom: 20px;
            left: 20px;
            right: 20px;
            background: rgba(20, 20, 30, 0.95);
            border-radius: 5px;
            padding: 20px;
            box-shadow: 0 10px 30px rgba(0, 212, 255, 0.3);
            z-index: 1000;
            display: flex;
            flex-direction: column;
            gap: 15px;
            transform: translateY(150%);
            transition: transform 0.5s ease;
        }
        
        .cookie-banner.show {
            transform: translateY(0);
        }
        
        .cookie-text {
            color: var(--light-color);
            font-size: 14px;
            margin-bottom: 10px;
        }
        
        .cookie-text a {
            color: var(--primary-color);
            text-decoration: none;
        }
        
        .cookie-buttons {
            display: flex;
            gap: 10px;
            justify-content: flex-end;
        }
        
        .cookie-btn {
            padding: 8px 16px;
            border-radius: 5px;
            border: none;
            cursor: pointer;
            font-size: 14px;
            transition: all 0.3s ease;
        }
        
        .cookie-accept {
            background: var(--primary-color);
            color: var(--dark-color);
        }
        
        .cookie-accept:hover {
            background: var(--secondary-color);
        }
        
        .cookie-reject {
            background: transparent;
            color: var(--light-color);
            border: 1px solid var(--light-color);
        }
        
        .cookie-reject:hover {
            background: rgba(255, 255, 255, 0.1);
        }
        
        .popup {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.8);
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 2000;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
        }
        
        .popup.show {
            opacity: 1;
            visibility: visible;
        }
        
        .popup-content {
            background: rgba(20, 20, 30, 0.95);
            padding: 40px;
            border-radius: 5px;
            max-width: 500px;
            width: 90%;
            text-align: center;
            transform: scale(0.7);
            transition: transform 0.3s ease;
        }
        
        .popup.show .popup-content {
            transform: scale(1);
        }
        
        .popup h3 {
            font-size: 24px;
            margin-bottom: 20px;
            color: var(--primary-color);
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        .popup p {
            margin-bottom: 30px;
            color: var(--light-color);
        }
        
        .popup-close {
            background: var(--primary-color);
            color: var(--dark-color);
            border: none;
            padding: 10px 20px;
            border-radius: 5px;
            cursor: pointer;
            font-size: 16px;
            transition: background 0.3s ease;
        }
        
        .popup-close:hover {
            background: var(--secondary-color);
        }
        
        @media (max-width: 992px) {
            .about-content {
                flex-direction: column;
            }
            
            .hero h1 {
                font-size: 40px;
            }
            
            .section-title {
                font-size: 30px;
            }
        }
        
        @media (max-width: 768px) {
            nav ul {
                display: none;
            }
            
            .burger-menu {
                display: flex;
            }
            
            .hero h1 {
                font-size: 30px;
            }
            
            .hero p {
                font-size: 16px;
            }
            
            .price {
                font-size: 30px;
            }
        }
        
        @media (max-width: 576px) {
            .hero h1 {
                font-size: 24px;
            }
            
            .section-title {
                font-size: 24px;
            }
            
            .gallery-container {
                grid-template-columns: 1fr;
            }
            
            .cookie-banner {
                flex-direction: column;
            }
            
            .cookie-buttons {
                width: 100%;
                justify-content: space-between;
            }
        }

