@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&family=Playfair+Display:wght@700&display=swap');

        :root {
            --primary-color: #5d3fd3;
            --secondary-color: #e5e5e5;
            --accent-color: #ff6f61;
            --dark-color: #1a1a1a;
            --light-color: #ffffff;
            --text-color: #333333;
            --transition-duration: 0.4s;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Roboto', sans-serif;
            line-height: 1.6;
            background-color: var(--light-color);
            color: var(--text-color);
            overflow-x: hidden;
        }

        a {
            text-decoration: none;
            color: var(--primary-color);
            transition: color var(--transition-duration) ease;
        }

        a:hover {
            color: var(--accent-color);
        }

        img {
            max-width: 100%;
            height: auto;
            display: block;
        }

        h1, h2, h3 {
            font-family: 'Playfair Display', serif;
            margin-bottom: 1rem;
            color: var(--dark-color);
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        .btn {
            display: inline-block;
            padding: 0.75rem 2rem;
            background-color: var(--primary-color);
            color: var(--light-color);
            border: none;
            border-radius: 5px;
            cursor: pointer;
            font-size: 1rem;
            font-weight: bold;
            transition: background-color var(--transition-duration) ease, transform var(--transition-duration) ease;
        }

        .btn:hover {
            background-color: var(--accent-color);
            transform: translateY(-3px);
        }

        /* Header */
        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            background-color: rgba(255, 255, 255, 0.95);
            padding: 1rem 0;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            z-index: 1000;
            transition: background-color var(--transition-duration) ease;
        }

        .nav-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-size: 1.8rem;
            font-weight: bold;
            color: var(--primary-color);
            font-family: 'Playfair Display', serif;
        }

        .nav-menu {
            list-style: none;
            display: flex;
        }

        .nav-menu li {
            margin-left: 2rem;
        }

        .nav-menu a {
            color: var(--dark-color);
            font-weight: bold;
            font-size: 1rem;
            position: relative;
        }

        .nav-menu a::after {
            content: '';
            position: absolute;
            width: 100%;
            height: 2px;
            background-color: var(--accent-color);
            bottom: -5px;
            left: 0;
            transform: scaleX(0);
            transform-origin: bottom right;
            transition: transform var(--transition-duration) ease;
        }

        .nav-menu a:hover::after {
            transform: scaleX(1);
            transform-origin: bottom left;
        }

        .burger {
            display: none;
            cursor: pointer;
            flex-direction: column;
            justify-content: space-between;
            width: 30px;
            height: 20px;
        }

        .burger span {
            display: block;
            width: 100%;
            height: 3px;
            background-color: var(--dark-color);
            transition: all 0.3s ease;
        }

        /* Hero Section */
        .hero {
            position: relative;
            height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            background-image: url('../img/08.webp');
            background-size: cover;
            background-position: center;
            color: var(--light-color);
            padding-top: 6rem;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.6);
        }

        .hero-content {
            position: relative;
            z-index: 1;
            animation: fadeIn 1s ease-in-out;
        }

        .hero h1 {
            font-size: 3.5rem;
            margin-bottom: 1rem;
            color: var(--light-color);
        }

        .hero p {
            font-size: 1.5rem;
            margin-bottom: 2rem;
        }

        /* Sections */
        section {
            padding: 6rem 0;
            position: relative;
        }

        section:nth-of-type(even) {
            background-color: var(--secondary-color);
        }

        .section-title {
            text-align: center;
            margin-bottom: 3rem;
            font-size: 2.5rem;
            position: relative;
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background-color: var(--primary-color);
        }

        /* About Section */
        .about .content {
            display: flex;
            align-items: center;
            gap: 4rem;
        }

        .about .image-wrapper {
            flex: 1;
            position: relative;
        }

        .about img {
            border-radius: 10px;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        }

        .about .text-content {
            flex: 1;
        }

        /* Products Section */
        .products-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }

        .product-card {
            background-color: var(--light-color);
            padding: 2rem;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            text-align: center;
            transition: transform var(--transition-duration) ease, box-shadow var(--transition-duration) ease;
        }

        .product-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 25px rgba(0, 0, 0, 0.2);
        }

        .product-card h3 {
            font-size: 1.5rem;
            margin-bottom: 1rem;
        }

        /* Prices Section */
        .prices-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
            text-align: center;
        }

        .price-card {
            background-color: var(--light-color);
            padding: 3rem 2rem;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            transition: transform var(--transition-duration) ease;
        }

        .price-card:hover {
            transform: scale(1.05);
            background-color: var(--primary-color);
            color: var(--light-color);
        }

        .price-card:hover h3, .price-card:hover .price-value {
            color: var(--light-color);
        }

        .price-card h3 {
            font-size: 1.8rem;
            color: var(--primary-color);
            margin-bottom: 1rem;
        }

        .price-value {
            font-size: 2.5rem;
            font-weight: bold;
            color: var(--accent-color);
            margin-bottom: 1.5rem;
        }

        .price-card ul {
            list-style: none;
            text-align: left;
            margin-bottom: 2rem;
        }

        .price-card ul li {
            margin-bottom: 0.5rem;
        }

        .price-card ul li::before {
            content: '✓';
            color: var(--accent-color);
            font-weight: bold;
            display: inline-block;
            width: 1em;
            margin-left: -1em;
        }

        .price-card:hover ul li::before {
            color: var(--light-color);
        }

        /* Gallery Section */
        .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.1);
        }

        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform var(--transition-duration) ease;
        }

        .gallery-item img:hover {
            transform: scale(1.1);
        }

        /* Feedback Section (Slider) */
        .feedback {
            overflow: hidden;
        }

        .slider-container {
            position: relative;
            max-width: 800px;
            margin: auto;
        }

        .feedback-slide {
            display: none;
            text-align: center;
            padding: 2rem;
            background-color: var(--light-color);
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            animation: slideFadeIn 0.8s ease-in-out;
        }

        .feedback-slide img {
            width: 100px;
            height: 100px;
            border-radius: 50%;
            margin: 0 auto 1rem;
        }

        .feedback-slide p {
            font-style: italic;
            margin-bottom: 1rem;
        }

        .feedback-slide h4 {
            font-weight: bold;
        }

        .slider-nav {
            text-align: center;
            margin-top: 1.5rem;
        }

        .dot {
            height: 15px;
            width: 15px;
            margin: 0 5px;
            background-color: #bbb;
            border-radius: 50%;
            display: inline-block;
            cursor: pointer;
            transition: background-color 0.6s ease;
        }

        .active-dot {
            background-color: var(--primary-color);
        }

        /* FAQ Section */
        .faq-item {
            border-bottom: 1px solid #ccc;
            padding: 1rem 0;
            cursor: pointer;
        }

        .faq-question {
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-weight: bold;
            font-size: 1.1rem;
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s ease-out;
        }

        .faq-answer p {
            padding-top: 1rem;
        }

        /* Contact Form */
        .contact-form {
            display: flex;
            flex-direction: column;
            gap: 1rem;
            max-width: 600px;
            margin: auto;
        }

        .form-group {
            position: relative;
        }

        .form-group input {
            width: 100%;
            padding: 1rem;
            border: 1px solid #ccc;
            border-radius: 5px;
            font-size: 1rem;
        }

        .form-group label {
            position: absolute;
            top: 50%;
            left: 1rem;
            transform: translateY(-50%);
            color: #999;
            pointer-events: none;
            transition: all 0.3s ease;
        }

        .form-group input:focus + label,
        .form-group input:not(:placeholder-shown) + label {
            top: 0;
            left: 0.5rem;
            font-size: 0.8rem;
            padding: 0 5px;
            background-color: var(--light-color);
        }

        .form-group input:focus {
            outline: none;
            border-color: var(--primary-color);
        }

        /* Footer */
        footer {
            background-color: var(--dark-color);
            color: var(--light-color);
            padding: 3rem 0;
            text-align: center;
        }

        .footer-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
        }

        .footer-logo {
            font-size: 1.8rem;
            font-weight: bold;
            font-family: 'Playfair Display', serif;
            color: var(--light-color);
            margin-bottom: 1rem;
        }

        .footer-links {
            list-style: none;
            display: flex;
            flex-wrap: wrap;
            gap: 1.5rem;
            margin-bottom: 1rem;
        }

        .footer-links a {
            color: var(--light-color);
            transition: color var(--transition-duration) ease;
        }

        .footer-links a:hover {
            color: var(--primary-color);
        }

        .footer-contact {
            text-align: right;
            margin-bottom: 1rem;
        }

        .footer-contact p {
            margin: 0;
        }

        .footer-contact a {
            color: var(--light-color);
            transition: color var(--transition-duration) ease;
        }

        .footer-contact a:hover {
            color: var(--primary-color);
        }

        .copyright {
            margin-top: 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 1rem;
            font-size: 0.9rem;
        }

        /* Disclaimer */
        .disclaimer {
            background-color: #f8f8f8;
            padding: 1rem;
            text-align: center;
            font-size: 0.8rem;
            color: #666;
            border-top: 1px solid #eee;
        }

        .disclaimer p {
            margin-bottom: 0.5rem;
        }

        .disclaimer a {
            color: var(--dark-color);
            text-decoration: underline;
        }

        /* Cookie Banner */
        .cookie-banner {
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            background-color: var(--dark-color);
            color: var(--light-color);
            padding: 1rem;
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 1rem;
            z-index: 2000;
            transform: translateY(100%);
            transition: transform var(--transition-duration) ease-in-out;
        }

        .cookie-banner.show {
            transform: translateY(0);
        }

        .cookie-banner p {
            margin: 0;
            font-size: 0.9rem;
        }

        .cookie-banner a {
            color: var(--accent-color);
            text-decoration: underline;
        }

        .cookie-banner .btn {
            padding: 0.5rem 1rem;
            background-color: var(--accent-color);
            color: var(--light-color);
        }

        /* Popup */
        .popup-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.7);
            display: flex;
            justify-content: center;
            align-items: center;
            z-index: 3000;
            visibility: hidden;
            opacity: 0;
            transition: visibility 0s, opacity 0.3s linear;
        }

        .popup-overlay.show {
            visibility: visible;
            opacity: 1;
        }

        .popup-content {
            background-color: var(--light-color);
            padding: 2rem;
            border-radius: 10px;
            text-align: center;
            max-width: 400px;
            transform: scale(0.8);
            transition: transform 0.3s ease;
        }

        .popup-overlay.show .popup-content {
            transform: scale(1);
        }

        .close-popup {
            position: absolute;
            top: 10px;
            right: 10px;
            font-size: 1.5rem;
            font-weight: bold;
            cursor: pointer;
            color: var(--dark-color);
        }

        /* Responsive */
        @media (max-width: 768px) {
            .nav-menu {
                position: fixed;
                top: 0;
                right: -100%;
                width: 70%;
                height: 100vh;
                background-color: rgba(255, 255, 255, 0.98);
                flex-direction: column;
                justify-content: center;
                align-items: center;
                gap: 2rem;
                transition: right 0.5s ease-in-out;
            }

            .nav-menu.active {
                right: 0;
            }

            .nav-menu li {
                margin: 0;
            }

            .burger {
                display: flex;
            }

            .burger.open span:nth-child(1) {
                transform: rotate(45deg) translate(5px, 5px);
            }

            .burger.open span:nth-child(2) {
                opacity: 0;
            }

            .burger.open span:nth-child(3) {
                transform: rotate(-45deg) translate(5px, -5px);
            }

            .hero h1 {
                font-size: 2.5rem;
            }

            .hero p {
                font-size: 1.2rem;
            }

            .about .content {
                flex-direction: column;
            }

            .prices-grid {
                grid-template-columns: 1fr;
            }

            .footer-content {
                flex-direction: column;
            }

            .footer-contact {
                text-align: center;
            }

            .footer-links {
                justify-content: center;
                margin-top: 1rem;
            }
        }

        /* Animations */
        @keyframes fadeIn {
            from {
                opacity: 0;
            }
            to {
                opacity: 1;
            }
        }

        @keyframes slideFadeIn {
            from {
                transform: translateY(20px);
                opacity: 0;
            }
            to {
                transform: translateY(0);
                opacity: 1;
            }
        }

