:root {
            --primary-color: #00FFC2;
            --secondary-color: #1a1a1a;
            --background-color: #0D0D0D;
            --text-color: #E0E0E0;
            --accent-color: #4A4A4A;
        }

        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            scroll-behavior: smooth;
        }

        body {
            background-color: var(--background-color);
            color: var(--text-color);
            line-height: 1.6;
        }

        a {
            color: var(--primary-color);
            text-decoration: none;
            transition: color 0.3s ease;
        }

        a:hover {
            color: var(--text-color);
        }

        h1, h2, h3 {
            color: var(--primary-color);
            text-align: center;
        }

        h1 {
            font-size: 3rem;
            margin-bottom: 1rem;
        }
        
        h2 {
            font-size: 2rem;
            margin-bottom: 1rem;
        }

        h3 {
            font-size: 1.5rem;
            margin-bottom: 0.5rem;
        }

        header {
            position: fixed;
            top: 0;
            width: 100%;
            background-color: rgba(13, 13, 13, 0.9);
            padding: 1rem 2rem;
            z-index: 1000;
            display: flex;
            justify-content: space-between;
            align-items: center;
            backdrop-filter: blur(5px);
        }

        .logo {
            font-size: 1.5rem;
            font-weight: bold;
            color: var(--primary-color);
        }

        .nav-menu {
            display: flex;
            list-style: none;
        }

        .nav-menu li {
            margin-left: 2rem;
        }

        .nav-menu a {
            text-transform: uppercase;
            font-weight: bold;
        }

        .burger-menu {
            display: none;
            cursor: pointer;
            flex-direction: column;
            justify-content: space-around;
            width: 2rem;
            height: 2rem;
        }

        .burger-menu .line {
            width: 100%;
            height: 3px;
            background-color: var(--primary-color);
            transition: all 0.3s linear;
        }

        main {
            padding-top: 5rem;
        }

        section {
            padding: 4rem 2rem;
            max-width: 1200px;
            margin: 0 auto;
        }

        .hero {
            position: relative;
            height: 100vh;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://images.unsplash.com/photo-1544367567-0f2fcb009e0b?w=500&auto=format&fit=crop&q=60&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxzZWFyY2h8MjF8fGZpdG5lc3N8ZW58MHx8MHx8fDA%3D') no-repeat center center/cover;
            background-attachment: fixed;
            text-align: center;
            padding: 0 2rem;
        }

        .hero-text {
            animation: fadeIn 2s ease-in-out;
        }

        .hero p {
            font-size: 1.2rem;
            max-width: 600px;
            margin-bottom: 2rem;
        }
        
        .cta-button {
            display: inline-block;
            padding: 1rem 2.5rem;
            background-color: var(--primary-color);
            color: var(--secondary-color);
            font-weight: bold;
            border-radius: 5px;
            transition: transform 0.3s ease;
        }

        .cta-button:hover {
            transform: scale(1.05);
            color: var(--secondary-color);
        }
        
        .about, .products, .prices, .gallery, .feedback, .faq {
            opacity: 0;
            transform: translateY(50px);
            transition: opacity 1s ease-out, transform 1s ease-out;
        }

        .about.visible, .products.visible, .prices.visible, .gallery.visible, .feedback.visible, .faq.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .about h2, .products h2, .prices h2, .gallery h2, .feedback h2, .faq h2 {
            margin-bottom: 2rem;
        }

        .about-content {
            display: flex;
            gap: 2rem;
            align-items: center;
        }

        .about-content img {
            max-width: 50%;
            border-radius: 10px;
        }

        .product-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }

        .product-card {
            background-color: var(--accent-color);
            padding: 2rem;
            border-radius: 10px;
            text-align: center;
            transition: transform 0.3s ease;
        }

        .product-card:hover {
            transform: translateY(-10px);
        }
        
        .price-grid {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 2rem;
        }
        
        .price-card {
            background-color: var(--accent-color);
            padding: 2rem;
            border-radius: 10px;
            text-align: center;
            width: 300px;
        }

        .price-card h3 {
            color: var(--primary-color);
        }

        .price-card .price {
            font-size: 2.5rem;
            font-weight: bold;
            margin: 1rem 0;
        }

        .price-card .price small {
            font-size: 1rem;
            font-weight: normal;
        }

        .price-card ul {
            list-style: none;
            padding: 0;
            margin-bottom: 1.5rem;
        }

        .price-card ul li {
            padding: 0.5rem 0;
            border-bottom: 1px solid var(--secondary-color);
        }
        
        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 1rem;
        }

        .gallery-grid img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 5px;
            transition: transform 0.3s ease;
        }

        .gallery-grid img:hover {
            transform: scale(1.05);
        }

        .feedback-slider-container {
            position: relative;
            max-width: 800px;
            margin: 0 auto;
            overflow: hidden;
        }
        
        .feedback-slider {
            display: flex;
            transition: transform 0.5s ease-in-out;
        }

        .feedback-card {
            min-width: 100%;
            padding: 2rem;
            background-color: var(--accent-color);
            border-radius: 10px;
            text-align: center;
        }
        
        .slider-nav {
            display: flex;
            justify-content: center;
            margin-top: 1rem;
        }

        .slider-nav button {
            background: var(--accent-color);
            color: var(--primary-color);
            border: none;
            padding: 0.5rem 1rem;
            margin: 0 0.5rem;
            cursor: pointer;
            border-radius: 5px;
        }

        .faq-item {
            background-color: var(--accent-color);
            padding: 1.5rem;
            margin-bottom: 1rem;
            border-radius: 10px;
            cursor: pointer;
        }

        .faq-item h3 {
            margin: 0;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .faq-item .answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.5s ease-in-out;
            padding-top: 0;
        }

        .faq-item.active .answer {
            max-height: 200px;
            padding-top: 1rem;
        }

        .contact-form-container {
            max-width: 600px;
            margin: 0 auto;
            background-color: var(--accent-color);
            padding: 2rem;
            border-radius: 10px;
        }

        .contact-form-container h2 {
            margin-bottom: 1rem;
        }

        .contact-form-container form {
            display: flex;
            flex-direction: column;
        }

        .contact-form-container label {
            margin-top: 1rem;
            margin-bottom: 0.5rem;
        }

        .contact-form-container input {
            padding: 0.8rem;
            border: none;
            border-radius: 5px;
            background-color: var(--secondary-color);
            color: var(--text-color);
        }

        .contact-form-container button {
            margin-top: 2rem;
            padding: 1rem;
            background-color: var(--primary-color);
            color: var(--secondary-color);
            border: none;
            border-radius: 5px;
            font-weight: bold;
            cursor: pointer;
            transition: background-color 0.3s ease;
        }
        
        .contact-form-container button:hover {
            background-color: #00e6b5;
        }
        
        .disclaimer {
            padding: 2rem;
            background-color: var(--secondary-color);
            text-align: center;
            font-size: 0.8rem;
        }

        footer {
            background-color: var(--secondary-color);
            color: var(--text-color);
            padding: 2rem;
            text-align: center;
            border-top: 1px solid var(--accent-color);
        }

        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }
        
        .footer-nav a {
            margin: 0 0.5rem;
        }
        
        .cookie-banner {
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            background-color: var(--accent-color);
            padding: 1rem 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            z-index: 1000;
            animation: slideInUp 0.5s ease-out;
            transform: translateY(100%);
            transition: transform 0.5s ease-out;
        }

        .cookie-banner.show {
            transform: translateY(0);
        }

        .cookie-banner button {
            background-color: var(--primary-color);
            color: var(--secondary-color);
            border: none;
            padding: 0.5rem 1rem;
            border-radius: 5px;
            cursor: pointer;
            font-weight: bold;
        }

        .popup {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.7);
            z-index: 2000;
            justify-content: center;
            align-items: center;
        }

        .popup-content {
            background-color: var(--background-color);
            padding: 2rem;
            border-radius: 10px;
            text-align: center;
            max-width: 400px;
            position: relative;
        }
        
        .close-popup {
            position: absolute;
            top: 1rem;
            right: 1rem;
            font-size: 1.5rem;
            cursor: pointer;
            color: var(--primary-color);
        }
        
        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }

        @keyframes slideInUp {
            from { transform: translateY(100%); }
            to { transform: translateY(0); }
        }

        @media (max-width: 768px) {
            .nav-menu {
                position: fixed;
                right: 0;
                top: 5rem;
                height: calc(100vh - 5rem);
                width: 70%;
                flex-direction: column;
                background-color: rgba(13, 13, 13, 0.95);
                transform: translateX(100%);
                transition: transform 0.5s ease-in-out;
                padding-top: 4rem;
            }

            .nav-menu.active {
                transform: translateX(0);
            }

            .nav-menu li {
                margin: 2rem 0;
                text-align: center;
            }

            .burger-menu {
                display: flex;
            }

            .burger-menu.active .line:nth-child(2) {
                opacity: 0;
            }

            .burger-menu.active .line:nth-child(1) {
                transform: rotate(45deg) translate(5px, 8px);
            }

            .burger-menu.active .line:nth-child(3) {
                transform: rotate(-45deg) translate(5px, -8px);
            }
            
            .hero h1 {
                font-size: 2.5rem;
            }
            
            .about-content {
                flex-direction: column;
            }

            .about-content img {
                max-width: 100%;
            }

            .feedback-card {
                padding: 1rem;
            }
        }

