:root {
            --primary-color: #00FFC2;
            --secondary-color: #2F3E46;
            --text-color: #E6E6E6;
            --background-color: #1A1A1A;
            --accent-color: #FF6B6B;
            --font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }

        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            background-color: var(--background-color);
            color: var(--text-color);
            font-family: var(--font-family);
            line-height: 1.6;
        }

        header {
            position: fixed;
            width: 100%;
            top: 0;
            left: 0;
            background-color: rgba(26, 26, 26, 0.9);
            backdrop-filter: blur(5px);
            z-index: 1000;
            padding: 1rem 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
            animation: header-fade-in 1s ease-out;
        }

        @keyframes header-fade-in {
            from { opacity: 0; transform: translateY(-50px); }
            to { opacity: 1; transform: translateY(0); }
        }

        .logo {
            font-size: 1.8rem;
            font-weight: bold;
            color: var(--primary-color);
            text-decoration: none;
            letter-spacing: 2px;
        }

        .nav-menu {
            display: flex;
            gap: 2rem;
        }

        .nav-menu a {
            color: var(--text-color);
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s ease;
        }

        .nav-menu a:hover {
            color: var(--primary-color);
        }

        .burger-menu {
            display: none;
            cursor: pointer;
            flex-direction: column;
            gap: 5px;
        }

        .burger-menu div {
            width: 25px;
            height: 3px;
            background-color: var(--primary-color);
            transition: all 0.3s ease-in-out;
        }

        .nav-menu.active {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            background-color: rgba(26, 26, 26, 0.95);
            padding: 1.5rem 2rem;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
            animation: slide-down 0.5s ease-out;
        }
        
        @keyframes slide-down {
            from { transform: translateY(-100%); }
            to { transform: translateY(0); }
        }

        main {
            padding-top: 100px;
        }

        section {
            padding: 5rem 10%;
            position: relative;
            z-index: 1;
            overflow: hidden;
        }

        .hero {
            position: relative;
            height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            overflow: hidden;
        }
        
        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('img/09.webp') no-repeat center center/cover;
            filter: grayscale(80%) brightness(50%);
            z-index: -1;
            animation: parallax 20s linear infinite;
        }
        
        @keyframes parallax {
            0% { background-position: 0% 0%; }
            50% { background-position: 100% 100%; }
            100% { background-position: 0% 0%; }
        }

        .hero-content {
            z-index: 2;
            color: white;
            animation: text-fade-in 2s ease-out;
        }

        @keyframes text-fade-in {
            from { opacity: 0; transform: translateY(50px); }
            to { opacity: 1; transform: translateY(0); }
        }

        .hero h1 {
            font-size: 4rem;
            margin-bottom: 1rem;
            text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7);
        }

        .hero p {
            font-size: 1.2rem;
            max-width: 600px;
            margin: 0 auto 2rem;
            text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
        }

        .cta-button {
            display: inline-block;
            padding: 1rem 2.5rem;
            background-color: var(--primary-color);
            color: var(--background-color);
            text-decoration: none;
            font-weight: bold;
            border-radius: 5px;
            transition: transform 0.3s ease, background-color 0.3s ease;
        }

        .cta-button:hover {
            transform: translateY(-5px);
            background-color: var(--accent-color);
        }

        .section-title {
            font-size: 2.5rem;
            text-align: center;
            margin-bottom: 3rem;
            color: var(--primary-color);
        }

        .about .content, .products .content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            align-items: center;
        }

        .about img, .products img {
            width: 100%;
            height: auto;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
            transition: transform 0.5s ease;
        }
        
        .about img:hover, .products img:hover {
            transform: scale(1.05);
        }

        .about .text, .products .text {
            animation: slide-in-right 1s ease-out;
        }

        .about .text {
            animation: slide-in-left 1s ease-out;
        }
        
        @keyframes slide-in-left {
            from { opacity: 0; transform: translateX(-50px); }
            to { opacity: 1; transform: translateX(0); }
        }
        
        @keyframes slide-in-right {
            from { opacity: 0; transform: translateX(50px); }
            to { opacity: 1; transform: translateX(0); }
        }

        .prices .card-container {
            display: flex;
            justify-content: center;
            gap: 2rem;
            flex-wrap: wrap;
        }

        .price-card {
            background-color: var(--secondary-color);
            border-radius: 10px;
            padding: 2rem;
            text-align: center;
            max-width: 300px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
            transition: transform 0.5s ease;
        }
        
        .price-card:hover {
            transform: translateY(-10px);
        }

        .price-card h3 {
            font-size: 1.8rem;
            margin-bottom: 1rem;
            color: var(--primary-color);
        }

        .price-card .price {
            font-size: 3rem;
            font-weight: bold;
            color: var(--accent-color);
            margin-bottom: 1rem;
        }

        .price-card ul {
            list-style: none;
            text-align: left;
            margin-bottom: 2rem;
        }

        .price-card ul li {
            margin-bottom: 0.5rem;
        }
        
        .gallery .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 1rem;
        }
        
        .gallery-item {
            overflow: hidden;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
            transition: transform 0.5s ease;
        }
        
        .gallery-item:hover {
            transform: scale(1.05);
        }

        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .feedback .slider {
            position: relative;
            width: 100%;
            overflow: hidden;
        }

        .feedback-slide {
            display: none;
            text-align: center;
            padding: 2rem;
            background-color: var(--secondary-color);
            border-radius: 10px;
            margin: 0 auto;
            max-width: 700px;
        }
        
        .feedback-slide.active {
            display: block;
            animation: slide-in-fade 1s ease-in-out;
        }
        
        @keyframes slide-in-fade {
            from { opacity: 0; transform: translateX(100%); }
            to { opacity: 1; transform: translateX(0); }
        }

        .feedback-author {
            margin-top: 1rem;
            font-style: italic;
            color: var(--primary-color);
        }

        .slider-controls {
            display: flex;
            justify-content: center;
            margin-top: 1rem;
            gap: 1rem;
        }

        .slider-dot {
            width: 10px;
            height: 10px;
            background-color: #555;
            border-radius: 50%;
            cursor: pointer;
            transition: background-color 0.3s ease;
        }

        .slider-dot.active {
            background-color: var(--primary-color);
        }
        
        .faq .accordion-container {
            max-width: 800px;
            margin: 0 auto;
        }
        
        .accordion-item {
            border-bottom: 1px solid #444;
        }
        
        .accordion-header {
            padding: 1.5rem;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .accordion-header h3 {
            margin: 0;
            font-size: 1.2rem;
        }
        
        .accordion-content {
            padding: 0 1.5rem;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.5s ease-in-out;
        }

        .contact {
            padding: 5rem 10%;
            background-color: var(--secondary-color);
        }

        .contact-form {
            max-width: 600px;
            margin: 0 auto;
        }
        
        .form-group {
            margin-bottom: 1.5rem;
        }
        
        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
        }
        
        .form-group input {
            width: 100%;
            padding: 0.8rem;
            background-color: #333;
            border: 1px solid #555;
            color: var(--text-color);
            border-radius: 5px;
        }
        
        .form-group input:focus {
            outline: none;
            border-color: var(--primary-color);
        }
        
        .submit-button {
            width: 100%;
            padding: 1rem;
            background-color: var(--primary-color);
            color: var(--background-color);
            border: none;
            cursor: pointer;
            font-weight: bold;
            border-radius: 5px;
            transition: background-color 0.3s ease;
        }
        
        .submit-button:hover {
            background-color: var(--accent-color);
        }
        
        .cookie-banner {
            position: fixed;
            bottom: 20px;
            left: 20px;
            background-color: var(--secondary-color);
            padding: 1.5rem;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
            max-width: 400px;
            display: flex;
            flex-direction: column;
            gap: 1rem;
            z-index: 2000;
        }
        
        .cookie-banner p {
            font-size: 0.9rem;
        }

        .cookie-banner a {
            color: var(--primary-color);
            text-decoration: none;
        }

        .cookie-banner button {
            background-color: var(--primary-color);
            color: var(--background-color);
            border: none;
            padding: 0.8rem 1.5rem;
            border-radius: 5px;
            cursor: pointer;
            font-weight: bold;
        }

        footer {
            background-color: var(--secondary-color);
            color: var(--text-color);
            padding: 3rem 10%;
            text-align: center;
        }

        footer .footer-content {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            flex-wrap: wrap;
            gap: 2rem;
            text-align: left;
        }

        footer .footer-section {
            flex: 1;
            min-width: 200px;
        }

        footer .footer-section h4 {
            font-size: 1.2rem;
            margin-bottom: 1rem;
            color: var(--primary-color);
        }

        footer .footer-section a, footer .footer-section p {
            color: var(--text-color);
            text-decoration: none;
            display: block;
            margin-bottom: 0.5rem;
        }

        footer .footer-section a:hover {
            text-decoration: underline;
        }
        
        #disclaimer {
            background-color: #111;
            padding: 2rem 10%;
            text-align: center;
            font-size: 0.8rem;
            color: #888;
        }
        
        .popup {
            display: none;
            position: fixed;
            z-index: 3000;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            overflow: auto;
            background-color: rgba(0,0,0,0.8);
            backdrop-filter: blur(5px);
        }

        .popup-content {
            background-color: var(--secondary-color);
            margin: 15% auto;
            padding: 2rem;
            border: 1px solid #888;
            width: 80%;
            max-width: 500px;
            text-align: center;
            border-radius: 10px;
            position: relative;
        }

        .close-popup {
            color: #aaa;
            position: absolute;
            top: 10px;
            right: 20px;
            font-size: 28px;
            font-weight: bold;
            cursor: pointer;
        }
        
        /* Media queries for responsive design */
        @media (max-width: 768px) {
            .nav-menu {
                display: none;
            }
        
            .burger-menu {
                display: flex;
            }

            .hero h1 {
                font-size: 2.5rem;
            }
            
            .footer-content {
                flex-direction: column;
            }
        }

