:root {
            --primary-color: #00e0b3;
            --secondary-color: #ff527c;
            --accent-color: #3b5998;
            --background-dark: #121212;
            --background-light: #f5f5f5;
            --text-light: #e0e0e0;
            --text-dark: #333;
            --card-bg: #212121;
        }

        /* Base styles */
        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Arial', sans-serif;
            line-height: 1.6;
            background-color: var(--background-dark);
            color: var(--text-light);
            transition: background-color 0.3s ease;
        }

        a {
            text-decoration: none;
            color: var(--primary-color);
            transition: color 0.3s ease;
        }

        a:hover {
            color: var(--secondary-color);
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        section {
            padding: 100px 0;
            position: relative;
            overflow: hidden;
        }

        h1, h2, h3 {
            margin-bottom: 20px;
            font-weight: bold;
        }

        h1 {
            font-size: 3.5em;
            color: var(--primary-color);
        }

        h2 {
            font-size: 2.5em;
            text-align: center;
            color: var(--text-light);
            margin-bottom: 60px;
            position: relative;
        }

        h2::after {
            content: '';
            width: 80px;
            height: 4px;
            background: var(--secondary-color);
            position: absolute;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
        }

        h3 {
            font-size: 1.8em;
            color: var(--secondary-color);
        }

        .btn {
            display: inline-block;
            padding: 12px 30px;
            background: var(--primary-color);
            color: var(--background-dark);
            border-radius: 50px;
            font-weight: bold;
            transition: transform 0.3s ease, background 0.3s ease;
        }

        .btn:hover {
            transform: translateY(-3px);
            background: var(--secondary-color);
            color: var(--text-light);
        }

        /* Header */
        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            background: rgba(18, 18, 18, 0.95);
            z-index: 1000;
            padding: 20px 0;
            transition: background-color 0.3s ease;
        }

        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-size: 2em;
            font-weight: bold;
            color: var(--primary-color);
        }

        nav ul {
            list-style: none;
            display: flex;
        }

        nav ul li {
            margin-left: 30px;
        }

        nav ul li a {
            font-weight: bold;
            color: var(--text-light);
            position: relative;
        }

        nav ul li a::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            background: var(--secondary-color);
            bottom: -5px;
            left: 0;
            transition: width 0.3s ease;
        }

        nav ul li a:hover::after {
            width: 100%;
        }

        .burger-menu {
            display: none;
            cursor: pointer;
            flex-direction: column;
            justify-content: space-around;
            width: 30px;
            height: 25px;
            z-index: 1001;
        }

        .burger-menu .bar {
            width: 100%;
            height: 3px;
            background-color: var(--text-light);
            transition: all 0.3s ease;
        }

        /* Hero */
        .hero {
            position: relative;
            height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: white;
            background: url('../img/04.webp') no-repeat center center/cover;
            background-attachment: fixed;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.6);
        }

        .hero-content {
            z-index: 10;
        }

        .hero-content h1 {
            font-size: 4em;
            margin-bottom: 20px;
            animation: fadeInDown 1s ease-in-out;
        }

        .hero-content p {
            font-size: 1.5em;
            margin-bottom: 40px;
            animation: fadeInUp 1s ease-in-out 0.5s;
        }

        .hero-content .btn {
            animation: fadeInUp 1s ease-in-out 1s;
        }

        /* About */
        .about .container {
            display: flex;
            align-items: center;
            gap: 50px;
        }

        .about-text {
            flex: 1;
            padding-right: 20px;
        }

        .about-text h2 {
            text-align: left;
        }

        .about-text h2::after {
            left: 0;
            transform: translateX(0);
        }

        .about-image {
            flex: 1;
        }

        .about-image img {
            width: 100%;
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
            animation: fadeInRight 1s ease-in-out;
        }

        /* Products */
        .products {
            background-color: var(--card-bg);
        }

        .products-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 40px;
        }

        .product-card {
            background: var(--background-dark);
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
            text-align: center;
            padding: 30px;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .product-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
        }

        .product-card img {
            width: 100%;
            height: 200px;
            object-fit: cover;
            border-radius: 8px;
            margin-bottom: 20px;
        }

        /* Prices */
        .prices-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }

        .price-card {
            background: var(--card-bg);
            border-radius: 10px;
            padding: 40px;
            text-align: center;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
            position: relative;
            overflow: hidden;
            transition: transform 0.3s ease;
        }

        .price-card:hover {
            transform: translateY(-10px);
        }

        .price-card h3 {
            font-size: 2em;
            color: var(--primary-color);
            margin-bottom: 10px;
        }

        .price-card .price {
            font-size: 3em;
            font-weight: bold;
            color: var(--secondary-color);
            margin-bottom: 20px;
        }

        .price-card ul {
            list-style: none;
            text-align: left;
            margin-bottom: 30px;
        }

        .price-card ul li {
            padding: 10px 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

        .price-card ul li:last-child {
            border-bottom: none;
        }

        /* Gallery */
        .gallery {
            background-color: var(--card-bg);
        }

        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 15px;
        }

        .gallery-item img {
            width: 100%;
            height: 250px;
            object-fit: cover;
            border-radius: 8px;
            transition: transform 0.3s ease;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
        }

        .gallery-item img:hover {
            transform: scale(1.05);
        }

        /* Feedback */
        .feedback {
            position: relative;
        }

        .slider-container {
            position: relative;
            max-width: 800px;
            margin: 0 auto;
            overflow: hidden;
        }

        .slides {
            display: flex;
            transition: transform 0.5s ease-in-out;
        }

        .slide {
            min-width: 100%;
            padding: 20px;
            background: var(--card-bg);
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
            text-align: center;
        }

        .slide p {
            font-style: italic;
            margin-bottom: 15px;
        }

        .slide .author {
            font-weight: bold;
            color: var(--primary-color);
        }

        .slider-nav button {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(0, 0, 0, 0.5);
            color: white;
            border: none;
            padding: 10px;
            cursor: pointer;
            z-index: 10;
            border-radius: 5px;
        }

        .slider-nav button#prev {
            left: 20px;
        }

        .slider-nav button#next {
            right: 20px;
        }

        /* FAQ */
        .faq-item {
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            padding: 20px 0;
            cursor: pointer;
        }

        .faq-question {
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-weight: bold;
            font-size: 1.2em;
            color: var(--primary-color);
        }

        .faq-question .toggle-icon {
            font-size: 1.5em;
            transition: transform 0.3s ease;
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.5s ease-out;
            padding-top: 0;
        }

        .faq-answer p {
            padding-top: 20px;
        }

        .faq-item.active .faq-answer {
            max-height: 200px;
            transition: max-height 0.5s ease-in;
        }

        .faq-item.active .toggle-icon {
            transform: rotate(180deg);
        }

        /* Contact Form */
        .contact {
            background-color: var(--card-bg);
        }

        .contact-form {
            max-width: 600px;
            margin: 0 auto;
        }

        .contact-form label {
            display: block;
            margin-bottom: 8px;
            font-weight: bold;
        }

        .contact-form input[type="text"],
        .contact-form input[type="email"],
        .contact-form input[type="tel"] {
            width: 100%;
            padding: 12px;
            margin-bottom: 20px;
            background: #333;
            border: 1px solid var(--accent-color);
            border-radius: 5px;
            color: white;
        }

        .contact-form button {
            width: 100%;
            border: none;
            cursor: pointer;
        }

        /* Footer */
        footer {
            background: var(--background-dark);
            color: var(--text-light);
            padding: 40px 0;
            text-align: center;
        }

        .footer-container {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: flex-start;
            gap: 30px;
            text-align: left;
        }

        .footer-logo, .footer-links, .footer-contact {
            flex: 1;
            min-width: 250px;
        }

        .footer-logo {
            text-align: center;
        }

        .footer-logo h4 {
            font-size: 2em;
            font-weight: bold;
            color: var(--primary-color);
        }

        .footer-links h4, .footer-contact h4 {
            margin-bottom: 15px;
            color: var(--secondary-color);
        }

        .footer-links ul {
            list-style: none;
        }

        .footer-links ul li {
            margin-bottom: 10px;
        }

        .footer-links ul li a {
            color: var(--text-light);
            transition: color 0.3s ease;
        }

        .footer-links ul li a:hover {
            color: var(--primary-color);
        }

        .footer-bottom {
            margin-top: 30px;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            font-size: 0.9em;
        }

        /* Disclaimer */
        .disclaimer {
            background: #0d0d0d;
            padding: 20px;
            text-align: center;
            font-size: 0.8em;
            border-top: 1px solid rgba(255, 255, 255, 0.05);
        }

        /* Cookie Banner */
        .cookie-banner {
            position: fixed;
            bottom: 20px;
            left: 20px;
            background: var(--card-bg);
            color: var(--text-light);
            padding: 20px;
            border-radius: 10px;
            box-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
            z-index: 2000;
            display: none;
            max-width: 400px;
        }

        .cookie-banner.show {
            display: block;
            animation: slideInUp 0.5s ease-in-out;
        }

        .cookie-banner p {
            margin-bottom: 15px;
            font-size: 0.9em;
        }

        .cookie-banner .btn {
            padding: 8px 20px;
            font-size: 0.9em;
        }

        /* Modal Popup */
        .modal {
            display: none;
            position: fixed;
            z-index: 3000;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.7);
            justify-content: center;
            align-items: center;
        }

        .modal-content {
            background-color: var(--background-dark);
            padding: 30px;
            border-radius: 10px;
            text-align: center;
            position: relative;
            max-width: 500px;
            width: 90%;
            animation: fadeIn 0.3s ease-in-out;
        }

        .modal-content h3 {
            color: var(--primary-color);
            margin-bottom: 20px;
        }

        .modal-content p {
            margin-bottom: 0;
        }

        .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(--secondary-color);
        }

        /* 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);
            }
        }

        @keyframes fadeInRight {
            from {
                opacity: 0;
                transform: translateX(50px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }
        
        @keyframes slideInUp {
            from {
                transform: translateY(100%);
            }
            to {
                transform: translateY(0);
            }
        }

        /* Media Queries for responsiveness */
        @media (max-width: 992px) {
            .about .container {
                flex-direction: column;
            }
            .about-text, .about-image {
                padding-right: 0;
                text-align: center;
            }
            .about-text h2::after {
                left: 50%;
                transform: translateX(-50%);
            }
            .footer-container {
                flex-direction: column;
                text-align: center;
            }
            .footer-links, .footer-contact {
                text-align: center;
            }
        }

        @media (max-width: 768px) {
            .header-container {
                padding: 15px 20px;
            }
            nav {
                display: none;
                position: absolute;
                top: 80px;
                left: 0;
                width: 100%;
                background: rgba(18, 18, 18, 0.95);
                flex-direction: column;
                text-align: center;
                padding: 20px 0;
            }
            nav.active {
                display: flex;
            }
            nav ul {
                flex-direction: column;
            }
            nav ul li {
                margin: 15px 0;
            }
            .burger-menu {
                display: flex;
            }
            .hero-content h1 {
                font-size: 3em;
            }
            .hero-content p {
                font-size: 1.2em;
            }
            h2 {
                font-size: 2em;
            }
        }

