@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700&display=swap');
        :root {
            --primary-color: #00e0b7;
            --secondary-color: #2c3e50;
            --accent-color: #e6e6e6;
            --dark-bg: #121212;
            --light-text: #f0f0f0;
        }
        * { box-sizing: border-box; margin: 0; padding: 0; }
        html { scroll-behavior: smooth; }
        body { font-family: 'Montserrat', sans-serif; background-color: var(--dark-bg); color: var(--light-text); line-height: 1.6; }
        .container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
        h1, h2, h3 { font-weight: 700; margin-bottom: 20px; }
        h1 { font-size: 3.5rem; }
        h2 { font-size: 2.5rem; }
        h3 { font-size: 1.8rem; }
        a { text-decoration: none; color: var(--primary-color); }
        .btn { display: inline-block; padding: 12px 25px; background-color: var(--primary-color); color: var(--dark-bg); border: none; border-radius: 5px; font-weight: 600; text-transform: uppercase; transition: background-color 0.3s ease; }
        .btn:hover { background-color: #00b396; }
        section { padding: 80px 0; }

        /* Header */
        header { position: fixed; top: 0; left: 0; width: 100%; z-index: 1000; background-color: rgba(18, 18, 18, 0.9); backdrop-filter: blur(5px); padding: 20px 0; border-bottom: 1px solid var(--secondary-color); }
        .navbar { display: flex; justify-content: space-between; align-items: center; }
        .logo { font-size: 1.8rem; font-weight: 700; color: var(--primary-color); }
        .nav-links { list-style: none; display: flex; }
        .nav-links li { margin-left: 30px; }
        .nav-links a { color: var(--light-text); font-weight: 600; position: relative; transition: color 0.3s ease; }
        .nav-links a:hover { color: var(--primary-color); }
        .nav-links a::after { content: ''; position: absolute; bottom: -5px; left: 0; width: 0; height: 2px; background-color: var(--primary-color); transition: width 0.3s ease; }
        .nav-links a:hover::after { width: 100%; }
        .burger-menu { display: none; cursor: pointer; }
        .burger-menu div { width: 25px; height: 3px; background-color: var(--light-text); margin: 5px; transition: all 0.3s ease; }

        /* Mobile Nav */
        @media (max-width: 768px) {
            .nav-links { position: fixed; top: 0; right: 0; height: 100vh; width: 60%; background-color: var(--secondary-color); flex-direction: column; align-items: center; justify-content: center; transform: translateX(100%); transition: transform 0.5s ease-in; }
            .nav-links.nav-active { transform: translateX(0%); }
            .nav-links li { opacity: 0; margin: 20px 0; }
            .nav-links li a { font-size: 1.5rem; }
            .burger-menu { display: block; }
            .nav-links.nav-active li { animation: navLinkFade 0.5s ease forwards 0.3s; }
            .nav-links.nav-active li:nth-child(1) { animation-delay: 0.2s; }
            .nav-links.nav-active li:nth-child(2) { animation-delay: 0.3s; }
            .nav-links.nav-active li:nth-child(3) { animation-delay: 0.4s; }
            .nav-links.nav-active li:nth-child(4) { animation-delay: 0.5s; }
            .nav-links.nav-active li:nth-child(5) { animation-delay: 0.6s; }
            .burger-menu.toggle .line1 { transform: rotate(-45deg) translate(-5px, 6px); }
            .burger-menu.toggle .line2 { opacity: 0; }
            .burger-menu.toggle .line3 { transform: rotate(45deg) translate(-5px, -6px); }
        }

        @keyframes navLinkFade { from { opacity: 0; transform: translateX(50px); } to { opacity: 1; transform: translateX(0); } }

        /* Hero */
        .hero { position: relative; height: 100vh; display: flex; align-items: center; text-align: center; overflow: hidden; }
        .hero-bg { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: linear-gradient(rgba(18, 18, 18, 0.7), rgba(18, 18, 18, 0.9)), url('../img/04.webp') no-repeat center center/cover; }
        .hero-content { position: relative; z-index: 10; color: var(--light-text); }
        .hero h1 { font-size: 4rem; text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5); }
        .hero p { font-size: 1.2rem; max-width: 600px; margin: 20px auto 40px; }

        /* About */
        .about .container { display: flex; flex-wrap: wrap; align-items: center; gap: 40px; }
        .about-text { flex: 1; min-width: 300px; }
        .about-image { flex: 1; min-width: 300px; text-align: center; }
        .about-image img { max-width: 100%; height: auto; border-radius: 10px; box-shadow: 0 0 20px rgba(0, 224, 183, 0.2); }

        /* Products */
        .products-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
        .product-card { background-color: var(--secondary-color); padding: 30px; border-radius: 10px; text-align: center; transition: transform 0.3s ease, box-shadow 0.3s ease; }
        .product-card:hover { transform: translateY(-10px); box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3); }
        .product-card img { max-width: 100%; height: 200px; object-fit: cover; border-radius: 5px; margin-bottom: 20px; }
        .product-card h3 { color: var(--primary-color); }
        .product-card p { color: var(--accent-color); }

        /* Prices */
        .prices-grid { display: flex; flex-wrap: wrap; justify-content: center; gap: 30px; }
        .price-card { background-color: var(--secondary-color); padding: 40px; border-radius: 10px; text-align: center; width: 300px; transition: transform 0.3s ease, box-shadow 0.3s ease; }
        .price-card:hover { transform: scale(1.05); box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4); }
        .price-card h3 { color: var(--primary-color); font-size: 1.8rem; margin-bottom: 10px; }
        .price-card .price { font-size: 3rem; font-weight: 700; color: var(--light-text); margin-bottom: 20px; }
        .price-card ul { list-style: none; text-align: left; margin-bottom: 30px; }
        .price-card li { margin-bottom: 10px; display: flex; align-items: center; }
        .price-card li::before { content: '✓'; color: var(--primary-color); margin-right: 10px; font-weight: 700; }

        /* Gallery */
        .gallery-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 15px; }
        .gallery-item img { width: 100%; height: 200px; object-fit: cover; border-radius: 8px; transition: transform 0.3s ease; }
        .gallery-item img:hover { transform: scale(1.05); }

        /* Feedback */
        .feedback-slider { overflow: hidden; position: relative; }
        .slides { display: flex; transition: transform 0.5s ease-in-out; }
        .slide { flex: 0 0 100%; text-align: center; padding: 40px 20px; background-color: var(--secondary-color); border-radius: 10px; margin: 0 10px; }
        .slide p { font-style: italic; max-width: 700px; margin: 0 auto 20px; color: var(--accent-color); }
        .slide .author { font-weight: 600; color: var(--primary-color); }
        .slider-controls { text-align: center; margin-top: 20px; }
        .slider-controls button { background-color: var(--primary-color); border: none; color: var(--dark-bg); padding: 10px 15px; border-radius: 50%; margin: 0 5px; cursor: pointer; transition: background-color 0.3s ease; }
        .slider-controls button:hover { background-color: #00b396; }

        /* FAQ */
        .faq-item { background-color: var(--secondary-color); margin-bottom: 15px; border-radius: 8px; overflow: hidden; }
        .faq-question { padding: 20px; cursor: pointer; display: flex; justify-content: space-between; align-items: center; font-weight: 600; }
        .faq-question .arrow { transition: transform 0.3s ease; }
        .faq-answer { padding: 0 20px; max-height: 0; overflow: hidden; transition: max-height 0.5s ease-in-out; }
        .faq-item.active .faq-answer { padding: 20px; max-height: 200px; }
        .faq-item.active .faq-question .arrow { transform: rotate(180deg); }

        /* Contact Form */
        .contact-form { background-color: var(--secondary-color); padding: 40px; border-radius: 10px; max-width: 600px; margin: 0 auto; }
        .contact-form h2 { text-align: center; }
        .form-group { margin-bottom: 20px; }
        .form-group label { display: block; margin-bottom: 5px; font-weight: 600; }
        .form-group input { width: 100%; padding: 12px; border-radius: 5px; border: 1px solid var(--accent-color); background-color: var(--dark-bg); color: var(--light-text); font-size: 1rem; }
        .contact-form .btn { width: 100%; padding: 15px; }

        /* Popup */
        .popup { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background-color: rgba(0, 0, 0, 0.7); display: none; justify-content: center; align-items: center; z-index: 2000; }
        .popup-content { background-color: var(--secondary-color); padding: 40px; border-radius: 10px; text-align: center; max-width: 400px; }
        .popup-content h3 { color: var(--primary-color); }

        /* Disclaimer */
        .disclaimer { padding: 40px 0; text-align: center; font-size: 0.9rem; color: #888; border-top: 1px solid var(--secondary-color); margin-top: 40px; }

        /* Footer */
        footer { background-color: var(--secondary-color); color: var(--accent-color); padding: 40px 0; text-align: center; font-size: 0.9rem; }
        .footer-content { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; }
        .footer-links { display: flex; gap: 20px; }
        .footer-contact { text-align: right; }
        .footer-contact p { margin-bottom: 5px; }
        .footer-links a, .footer-contact a { color: var(--accent-color); transition: color 0.3s ease; }
        .footer-links a:hover, .footer-contact a:hover { color: var(--primary-color); }
        .footer-bottom { margin-top: 20px; padding-top: 20px; border-top: 1px solid #444; }

        @media (max-width: 768px) {
            .footer-content { flex-direction: column; text-align: center; }
            .footer-links, .footer-contact { margin-top: 20px; text-align: center; }
            .footer-contact { order: -1; }
            h1{
                font-size: 2.5em !important;
            }
            h2{
                font-size: 2em;
            }
        }

        /* Cookie Banner */
        .cookie-banner { position: fixed; bottom: 0; left: 0; right: 0; background-color: rgba(18, 18, 18, 0.95); backdrop-filter: blur(5px); color: var(--light-text); padding: 20px; display: flex; justify-content: space-between; align-items: center; z-index: 1500; border-top: 1px solid var(--secondary-color); }
        .cookie-banner p { margin-right: 20px; font-size: 0.9rem; }
        .cookie-banner a { color: var(--primary-color); text-decoration: underline; }
        .cookie-banner button { background-color: var(--primary-color); color: var(--dark-bg); border: none; padding: 10px 20px; cursor: pointer; font-weight: 600; border-radius: 5px; }
        .cookie-banner button:hover { background-color: #00b396; }

