:root {
            --color-primary: #8e44ad;
            --color-secondary: #2c3e50;
            --color-accent: #3498db;
            --color-light: #ecf0f1;
            --color-dark: #34495e;
            --font-family-header: 'Cinzel', serif;
            --font-family-body: 'Poppins', sans-serif;
        }

        @import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@700&family=Poppins:wght@400;600&display=swap');

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            scroll-behavior: smooth;
        }

        body {
            font-family: var(--font-family-body);
            line-height: 1.6;
            color: var(--color-dark);
            background-color: var(--color-light);
            overflow-x: hidden;
            position: relative;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        header.main-header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            background-color: rgba(236, 240, 241, 0.95);
            padding: 1rem 0;
            z-index: 1000;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        }
        
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-family: var(--font-family-header);
            font-size: 2rem;
            color: var(--color-primary);
            text-decoration: none;
            font-weight: 700;
        }

        nav.main-nav ul {
            list-style: none;
            display: flex;
        }

        nav.main-nav li {
            margin-left: 25px;
        }

        nav.main-nav a {
            text-decoration: none;
            color: var(--color-dark);
            font-weight: 600;
            font-size: 1rem;
            transition: color 0.3s ease;
        }

        nav.main-nav a:hover {
            color: var(--color-primary);
        }

        .burger {
            display: none;
            cursor: pointer;
            flex-direction: column;
            justify-content: space-around;
            width: 30px;
            height: 25px;
        }

        .burger .line {
            width: 100%;
            height: 3px;
            background-color: var(--color-dark);
            transition: all 0.3s linear;
        }

        @media (max-width: 768px) {
            nav.main-nav {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 70px;
                right: 0;
                width: 100%;
                background-color: rgba(236, 240, 241, 0.95);
                text-align: center;
                box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
                padding: 20px 0;
            }

            nav.main-nav.active {
                display: flex;
            }

            nav.main-nav ul {
                flex-direction: column;
            }

            nav.main-nav li {
                margin: 15px 0;
            }

            .burger {
                display: flex;
            }
        }

        main {
            padding-top: 80px;
        }

        section {
            padding: 80px 0;
            overflow: hidden;
            position: relative;
        }

        .hero {
            position: relative;
            height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: var(--color-light);
            background-image: url('../img/03.webp');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
        }

        .hero::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(44, 62, 80, 0.6);
        }

        .hero-content {
            position: relative;
            z-index: 1;
            padding: 20px;
        }

        .hero h1 {
            font-family: var(--font-family-header);
            font-size: 3.5rem;
            margin-bottom: 20px;
            text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
        }

        .hero p {
            font-size: 1.2rem;
            max-width: 600px;
            margin: 0 auto 30px;
        }

        .cta-button {
            background-color: var(--color-accent);
            color: var(--color-light);
            padding: 15px 30px;
            text-decoration: none;
            border-radius: 5px;
            font-weight: 600;
            transition: background-color 0.3s ease, transform 0.3s ease;
            display: inline-block;
            border: none;
            cursor: pointer;
            font-family: var(--font-family-body);
        }

        .cta-button:hover {
            background-color: #2980b9;
            transform: translateY(-3px);
        }

        .section-heading {
            text-align: center;
            margin-bottom: 50px;
            font-family: var(--font-family-header);
            font-size: 2.5rem;
            color: var(--color-primary);
        }

        .about .container, .products .container, .feedback .container, .faq .container {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
        }

        .about .content, .products .content, .feedback .content, .faq .content {
            flex: 1;
            padding: 20px;
            
            transition: opacity 0.6s ease, transform 0.6s ease;
        }

        .about .image-container, .products .image-container {
            flex: 1;
            padding: 20px;
            text-align: center;
            
            transition: opacity 0.6s ease, transform 0.6s ease;
        }
        
        .about .image-container img, .products .image-container img {
            max-width: 100%;
            height: auto;
            border-radius: 10px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
        }

        .content h2, .content h3 {
            font-family: var(--font-family-header);
            color: var(--color-secondary);
            margin-bottom: 15px;
        }

        .content p {
            margin-bottom: 20px;
        }

        .products .product-item {
            display: flex;
            align-items: center;
            margin-bottom: 40px;
        }

        .products .product-item:nth-child(even) {
            flex-direction: row-reverse;
        }

        .products .product-item .image-container {
            flex: 1;
        }

        .products .product-item .content {
            flex: 1;
        }

        .products .product-item img {
            border-radius: 10px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
            width: 100%;
            height: auto;
        }

        .prices .price-cards {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            text-align: center;
        }

        .prices .price-card {
            background-color: #fff;
            padding: 40px 20px;
            border-radius: 10px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            opacity: 0;
            transform: translateY(20px);
        }

        .prices .price-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
        }

        .prices .price-card h3 {
            font-family: var(--font-family-header);
            color: var(--color-primary);
            margin-bottom: 10px;
        }

        .prices .price-card .price {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--color-secondary);
            margin-bottom: 20px;
        }

        .prices .price-card ul {
            list-style: none;
            text-align: left;
            margin-bottom: 30px;
            padding-left: 20px;
        }

        .prices .price-card ul li {
            position: relative;
            margin-bottom: 10px;
            padding-left: 25px;
        }

        .prices .price-card ul li::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: var(--color-accent);
            font-weight: 700;
        }

        .gallery .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
        }

        .gallery-grid img {
            width: 100%;
            height: auto;
            border-radius: 10px;
            transition: transform 0.3s ease;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
            opacity: 0;
            transform: scale(0.95);
        }
        
        .gallery-grid img:hover {
            transform: scale(1.05);
        }

        .feedback .slider-container {
            position: relative;
            max-width: 800px;
            margin: 0 auto;
            overflow: hidden;
            padding: 20px;
            background-color: #fff;
            border-radius: 10px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
        }

        .feedback .slider {
            display: flex;
            transition: transform 0.5s ease-in-out;
        }

        .feedback .slide {
            min-width: 100%;
            text-align: center;
            padding: 20px;
        }

        .feedback .slide p {
            font-style: italic;
            margin-bottom: 15px;
        }

        .feedback .slide .author {
            font-weight: 600;
            color: var(--color-primary);
        }

        .slider-nav {
            position: absolute;
            top: 50%;
            width: 100%;
            display: flex;
            justify-content: space-between;
            transform: translateY(-50%);
            padding: 0 10px;
        }

        .slider-nav button {
            background-color: rgba(44, 62, 80, 0.5);
            border: none;
            color: white;
            padding: 10px;
            cursor: pointer;
            border-radius: 50%;
            font-size: 1.2rem;
            transition: background-color 0.3s ease;
        }
        
        .slider-nav button:hover {
            background-color: var(--color-secondary);
        }

        .faq .faq-item {
            margin-bottom: 20px;
            border-bottom: 1px solid #ccc;
            padding-bottom: 20px;
        }

        .faq .faq-question {
            display: flex;
            justify-content: space-between;
            align-items: center;
            cursor: pointer;
            font-weight: 600;
            color: var(--color-secondary);
            font-size: 1.1rem;
        }

        .faq .faq-question span {
            font-size: 1.5rem;
            transition: transform 0.3s ease;
        }

        .faq .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s ease-out;
            padding-top: 0;
            color: var(--color-dark);
        }
        
        .faq .faq-answer.active {
            padding-top: 20px;
        }

        .form-section {
            background-color: var(--color-secondary);
            color: var(--color-light);
            text-align: center;
            padding: 80px 20px;
        }

        .form-section h2 {
            font-family: var(--font-family-header);
            color: var(--color-light);
            margin-bottom: 20px;
        }

        .contact-form {
            max-width: 600px;
            margin: 0 auto;
        }

        .contact-form .form-group {
            margin-bottom: 20px;
            text-align: left;
        }

        .contact-form label {
            display: block;
            margin-bottom: 5px;
            font-weight: 600;
        }

        .contact-form input[type="text"],
        .contact-form input[type="email"],
        .contact-form input[type="tel"] {
            width: 100%;
            padding: 10px;
            border: none;
            border-radius: 5px;
            font-size: 1rem;
            font-family: var(--font-family-body);
        }

        .contact-form button {
            width: 100%;
            padding: 15px;
            background-color: var(--color-primary);
            color: var(--color-light);
            border: none;
            border-radius: 5px;
            font-size: 1.1rem;
            cursor: pointer;
            transition: background-color 0.3s ease;
            font-family: var(--font-family-body);
            font-weight: 600;
        }

        .contact-form button:hover {
            background-color: #7d3c98;
        }

        footer {
            background-color: var(--color-dark);
            color: var(--color-light);
            padding: 40px 0;
            text-align: center;
        }

        .footer-content {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            flex-wrap: wrap;
            text-align: left;
        }

        .footer-info, .footer-nav {
            flex: 1;
            min-width: 250px;
            margin: 20px;
        }

        .footer-info h4, .footer-nav h4 {
            font-family: var(--font-family-header);
            color: var(--color-accent);
            margin-bottom: 15px;
        }

        .footer-info p, .footer-info a {
            color: var(--color-light);
            text-decoration: none;
            display: block;
            margin-bottom: 8px;
            transition: color 0.3s ease;
        }
        
        .footer-info a:hover {
            color: var(--color-primary);
        }

        .footer-nav ul {
            list-style: none;
        }

        .footer-nav a {
            color: var(--color-light);
            text-decoration: none;
            display: block;
            margin-bottom: 8px;
            transition: color 0.3s ease;
        }

        .footer-nav a:hover {
            color: var(--color-primary);
        }

        .footer-bottom {
            text-align: center;
            margin-top: 20px;
            padding-top: 20px;
            border-top: 1px solid #4a637d;
        }

        .disclaimer {
            background-color: #f1f1f1;
            padding: 20px;
            text-align: center;
            font-size: 0.9rem;
            color: #555;
            border-top: 1px solid #ddd;
        }

        .cookie-banner {
            position: fixed;
            bottom: 20px;
            left: 50%;
            transform: translateX(-50%);
            background-color: var(--color-dark);
            color: var(--color-light);
            padding: 15px 25px;
            border-radius: 8px;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
            z-index: 1000;
            display: none;
            align-items: center;
            gap: 20px;
            animation: fadeIn 0.5s ease-out;
        }

        .cookie-banner p {
            margin: 0;
            font-size: 0.9rem;
        }

        .cookie-banner button {
            background-color: var(--color-accent);
            color: var(--color-light);
            border: none;
            padding: 8px 15px;
            border-radius: 5px;
            cursor: pointer;
            transition: background-color 0.3s ease;
        }

        .cookie-banner button:hover {
            background-color: #2980b9;
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateX(-50%) translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateX(-50%) translateY(0);
            }
        }
        
        .modal {
            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;
        }

        .modal-content {
            background-color: var(--color-light);
            padding: 40px;
            border-radius: 10px;
            text-align: center;
            max-width: 500px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
            position: relative;
            animation: zoomIn 0.3s ease-out;
        }

        .modal-content h3 {
            color: var(--color-primary);
            margin-bottom: 20px;
            font-family: var(--font-family-header);
        }
        
        .modal-content p {
            color: var(--color-dark);
            margin-bottom: 20px;
        }

        .close-button {
            position: absolute;
            top: 15px;
            right: 20px;
            font-size: 1.5rem;
            font-weight: bold;
            color: #aaa;
            cursor: pointer;
            transition: color 0.3s ease;
        }

        .close-button:hover {
            color: var(--color-dark);
        }

        @keyframes zoomIn {
            from {
                transform: scale(0.9);
                opacity: 0;
            }
            to {
                transform: scale(1);
                opacity: 1;
            }
        }

