@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;700&display=swap');

        :root {
            --primary-color: #00ffff;
            --secondary-color: #ffffff;
            --background-color: #0d0d0d;
            --text-color: #cccccc;
            --accent-color: #ff00ff;
            --border-color: rgba(255, 255, 255, 0.1);
        }

        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Roboto', sans-serif;
            background-color: var(--background-color);
            color: var(--text-color);
            line-height: 1.6;
            overflow-x: hidden;
        }

        h1, h2, h3 {
            color: var(--secondary-color);
            font-weight: 700;
        }

        h1 {
            font-size: 3.5rem;
            text-shadow: 0 0 10px var(--primary-color);
        }

        h2 {
            font-size: 2.5rem;
            margin-bottom: 1rem;
        }

        h3 {
            font-size: 1.5rem;
            margin-bottom: 0.5rem;
        }

        a {
            color: var(--primary-color);
            text-decoration: none;
            transition: color 0.3s ease;
        }

        a:hover {
            color: var(--accent-color);
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Header */
        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            background-color: rgba(13, 13, 13, 0.9);
            backdrop-filter: blur(5px);
            z-index: 1000;
            border-bottom: 1px solid var(--border-color);
            animation: fadeInDown 1s ease-in-out;
        }

        .navbar {
            display: flex;
            justify-content: space-between;
            align-items: center;
            height: 60px;
        }

        .logo {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--primary-color);
        }

        .nav-links {
            list-style: none;
            display: flex;
        }

        .nav-links li {
            margin-left: 25px;
        }

        .nav-links a {
            font-size: 1rem;
            text-transform: uppercase;
        }

        .burger {
            display: none;
            cursor: pointer;
            flex-direction: column;
            justify-content: space-around;
            width: 30px;
            height: 25px;
        }

        .burger div {
            width: 100%;
            height: 3px;
            background-color: var(--secondary-color);
            transition: all 0.3s ease;
        }

        /* Hero Section */
        .hero {
            height: 100vh;
            display: flex;
            align-items: center;
            text-align: center;
            background-image: url('../img/04.webp');
            background-size: cover;
            background-position: center;
            position: relative;
            animation: fadeIn 2s ease-in-out;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(13, 13, 13, 0.7);
        }

        .hero-content {
            position: relative;
            z-index: 1;
        }

        .cta-button {
            display: inline-block;
            background-color: var(--primary-color);
            color: var(--background-color);
            padding: 12px 30px;
            text-transform: uppercase;
            font-weight: 700;
            border-radius: 5px;
            margin-top: 2rem;
            transition: transform 0.3s ease;
        }

        .cta-button:hover {
            transform: scale(1.05);
        }

        /* Sections */
        section {
            padding: 80px 0;
            border-bottom: 1px solid var(--border-color);
        }

        .section-title {
            text-align: center;
            margin-bottom: 4rem;
        }

        .content-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }

        .text-center {
            text-align: center;
        }

        /* Product Description */
        .products .product-item {
            background-color: rgba(255, 255, 255, 0.05);
            padding: 30px;
            border-radius: 10px;
            border: 1px solid var(--border-color);
            transition: transform 0.3s ease;
        }

        .products .product-item:hover {
            transform: translateY(-10px);
        }
        
        .product-item img {
            max-width: 100%;
            border-radius: 8px;
            margin-bottom: 1rem;
        }

        /* Prices */
        .prices .price-card {
            background-color: rgba(255, 255, 255, 0.05);
            padding: 40px;
            border-radius: 10px;
            text-align: center;
            border: 1px solid var(--border-color);
            transition: transform 0.3s ease;
        }
        
        .prices .price-card:hover {
            transform: scale(1.05);
        }

        .price-card h3 {
            color: var(--primary-color);
            text-shadow: 0 0 5px var(--primary-color);
        }
        
        .price-card .price {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--secondary-color);
            margin: 1rem 0;
        }

        .price-card ul {
            list-style: none;
            text-align: left;
            margin-bottom: 2rem;
        }
        
        .price-card li {
            margin-bottom: 10px;
            position: relative;
            padding-left: 20px;
        }

        .price-card li::before {
            content: '✔';
            color: var(--primary-color);
            position: absolute;
            left: 0;
        }

        /* Gallery */
        .gallery .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 15px;
        }
        
        .gallery-item {
            overflow: hidden;
            border-radius: 10px;
            border: 1px solid var(--border-color);
            position: relative;
        }

        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .gallery-item:hover img {
            transform: scale(1.1);
        }

        /* Feedback */
        .feedback .slider-container {
            overflow: hidden;
            position: relative;
        }

        .feedback .slide {
            display: flex;
            transition: transform 0.5s ease-in-out;
        }

        .feedback-card {
            min-width: 100%;
            padding: 30px;
            background-color: rgba(255, 255, 255, 0.05);
            border-radius: 10px;
            border: 1px solid var(--border-color);
            margin: 0 15px;
        }

        .slider-nav {
            text-align: center;
            margin-top: 20px;
        }

        .slider-nav button {
            background: none;
            border: 1px solid var(--primary-color);
            color: var(--primary-color);
            padding: 8px 15px;
            cursor: pointer;
            border-radius: 5px;
            margin: 0 5px;
            transition: background-color 0.3s ease;
        }
        
        .slider-nav button:hover {
            background-color: var(--primary-color);
            color: var(--background-color);
        }

        /* FAQ */
        .faq .faq-item {
            border: 1px solid var(--border-color);
            border-radius: 8px;
            margin-bottom: 15px;
            overflow: hidden;
        }

        .faq-question {
            padding: 20px;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            background-color: rgba(255, 255, 255, 0.05);
            transition: background-color 0.3s ease;
        }
        
        .faq-question:hover {
            background-color: rgba(255, 255, 255, 0.1);
        }
        
        .faq-question h3 {
            margin: 0;
        }

        .faq-answer {
            padding: 0 20px;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.5s ease-out, padding 0.5s ease-out;
        }

        .faq-answer p {
            padding-bottom: 20px;
        }

        .faq-item.active .faq-answer {
            max-height: 200px;
            transition: max-height 0.5s ease-in, padding 0.5s ease-in;
        }

        /* Contact Form */
        .contact form {
            max-width: 600px;
            margin: 0 auto;
            background-color: rgba(255, 255, 255, 0.05);
            padding: 40px;
            border-radius: 10px;
            border: 1px solid var(--border-color);
        }
        
        .form-group {
            margin-bottom: 20px;
        }
        
        .form-group label {
            display: block;
            margin-bottom: 5px;
        }

        .form-group input {
            width: 100%;
            padding: 10px;
            border: 1px solid var(--border-color);
            background-color: rgba(255, 255, 255, 0.05);
            color: var(--secondary-color);
            border-radius: 5px;
        }

        .submit-btn {
            width: 100%;
            background-color: var(--primary-color);
            color: var(--background-color);
            padding: 15px;
            border: none;
            cursor: pointer;
            text-transform: uppercase;
            font-weight: 700;
            border-radius: 5px;
            transition: background-color 0.3s ease;
        }

        .submit-btn:hover {
            background-color: var(--accent-color);
        }

        /* Disclaimer */
        .disclaimer {
            padding: 40px 0;
            background-color: var(--background-color);
            text-align: center;
            border-top: 1px solid var(--border-color);
            font-size: 0.8rem;
            color: #888;
        }
        
        /* Footer */
        footer {
            background-color: var(--background-color);
            color: var(--text-color);
            padding: 30px 0;
            text-align: center;
            border-top: 1px solid var(--border-color);
        }
        
        .footer-content {
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 20px;
            text-align: left;
        }

        .footer-section {
            flex: 1;
            min-width: 200px;
        }
        
        .footer-section h3 {
            margin-bottom: 10px;
            color: var(--primary-color);
        }
        
        .footer-section ul {
            list-style: none;
        }
        
        .footer-section a {
            color: var(--text-color);
        }
        
        .footer-section a:hover {
            color: var(--primary-color);
        }

        .footer-bottom {
            margin-top: 20px;
            padding-top: 20px;
            border-top: 1px solid var(--border-color);
            text-align: center;
        }
        
        /* Cookie Banner */
        .cookie-banner {
            position: fixed;
            bottom: 20px;
            left: 50%;
            transform: translateX(-50%);
            background-color: rgba(13, 13, 13, 0.95);
            border: 1px solid var(--border-color);
            padding: 20px;
            border-radius: 8px;
            z-index: 2000;
            max-width: 400px;
            text-align: center;
            animation: fadeInUp 0.8s ease-in-out;
        }
        
        .cookie-banner p {
            margin-bottom: 15px;
            font-size: 0.9rem;
        }
        
        .cookie-banner-btn {
            background-color: var(--primary-color);
            color: var(--background-color);
            border: none;
            padding: 10px 20px;
            border-radius: 5px;
            cursor: pointer;
            transition: background-color 0.3s ease;
        }

        .cookie-banner-btn:hover {
            background-color: var(--accent-color);
        }
        
        /* Modal */
        .modal {
            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);
            animation: fadeIn 0.5s ease-in-out;
        }

        .modal-content {
            background-color: var(--background-color);
            margin: 15% auto;
            padding: 40px;
            border: 1px solid var(--border-color);
            width: 80%;
            max-width: 500px;
            text-align: center;
            border-radius: 10px;
            position: relative;
        }

        .close-button {
            position: absolute;
            top: 10px;
            right: 20px;
            color: #aaa;
            font-size: 28px;
            font-weight: bold;
            cursor: pointer;
        }
        
        .close-button:hover,
        .close-button:focus {
            color: var(--primary-color);
            text-decoration: none;
        }

        /* Animations */
        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }

        @keyframes fadeInDown {
            from { opacity: 0; transform: translateY(-50px); }
            to { opacity: 1; transform: translateY(0); }
        }

        @keyframes fadeInUp {
            from { opacity: 0; transform: translateY(50px); }
            to { opacity: 1; transform: translateY(0); }
        }

        /* Responsive */
        @media screen and (max-width: 768px) {
            .nav-links {
                position: fixed;
                right: 0;
                top: 60px;
                background-color: rgba(13, 13, 13, 0.95);
                backdrop-filter: blur(10px);
                height: calc(100vh - 60px);
                width: 70%;
                flex-direction: column;
                transform: translateX(100%);
                transition: transform 0.5s ease-in-out;
                z-index: 999;
                padding-top: 50px;
            }

            .nav-links.nav-active {
                transform: translateX(0);
            }

            .nav-links li {
                opacity: 0;
                margin: 20px 0;
                text-align: center;
            }
            
            .nav-links li a {
                font-size: 1.2rem;
            }

            .burger {
                display: flex;
            }
            
            .footer-content {
                flex-direction: column;
                text-align: center;
            }
            
            .footer-section {
                margin-bottom: 20px;
            }
        }

