* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Montserrat', sans-serif;
        }

        :root {
            --primary: #1A237E;
            --secondary: #FFD700;
            --accent: #C0C0C0;
            --dark: #800000;
            --light: #F5F5DC;
            --gray: #555555;
        }

        body {
            background-color: var(--light);
            color: var(--gray);
            overflow-x: hidden;
        }

        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Header */
        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            background-color: rgba(26, 35, 126, 0.95);
            z-index: 1000;
            padding: 15px 0;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
        }

        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-size: 28px;
            font-weight: 700;
            color: var(--secondary);
            text-decoration: none;
            letter-spacing: 1px;
            transition: all 0.3s ease;
        }

        .logo:hover {
            color: var(--accent);
            transform: scale(1.05);
        }

        nav ul {
            display: flex;
            list-style: none;
        }

        nav ul li {
            margin-left: 30px;
        }

        nav ul li a {
            color: var(--light);
            text-decoration: none;
            font-weight: 500;
            font-size: 16px;
            transition: all 0.3s ease;
            position: relative;
        }

        nav ul li a:after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            background-color: var(--secondary);
            bottom: -5px;
            left: 0;
            transition: all 0.3s ease;
        }

        nav ul li a:hover {
            color: var(--secondary);
        }

        nav ul li a:hover:after {
            width: 100%;
        }

        .burger {
            display: none;
            cursor: pointer;
        }

        .burger div {
            width: 25px;
            height: 3px;
            background-color: var(--light);
            margin: 5px 0;
            transition: all 0.3s ease;
        }

        /* Hero Section */
        .hero {
            height: 100vh;
            background: linear-gradient(rgba(26, 35, 126, 0.7), rgba(26, 35, 126, 0.7)), url('../img/02.webp');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: var(--light);
            position: relative;
            overflow: hidden;
        }

        .hero-content {
            z-index: 2;
            max-width: 800px;
            padding: 0 20px;
            animation: fadeInUp 1s ease;
        }

        .hero h1 {
            font-size: 4rem;
            margin-bottom: 20px;
            color: var(--secondary);
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
            font-family: 'Playfair Display', serif;
        }

        .hero p {
            font-size: 1.5rem;
            margin-bottom: 30px;
            line-height: 1.6;
        }

        .cta-button {
            display: inline-block;
            background-color: var(--secondary);
            color: var(--primary);
            padding: 15px 35px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            font-size: 18px;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
            border: 2px solid transparent;
        }

        .cta-button:hover {
            background-color: transparent;
            color: var(--secondary);
            border-color: var(--secondary);
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(255, 215, 0, 0.6);
        }

        .marquee {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            background-color: rgba(255, 215, 0, 0.9);
            color: var(--primary);
            padding: 10px 0;
            overflow: hidden;
            white-space: nowrap;
            font-weight: 600;
            font-size: 18px;
        }

        .marquee-content {
            display: inline-block;
            animation: marquee 20s linear infinite;
        }

        @keyframes marquee {
            0% {
                transform: translateX(100%);
            }
            100% {
                transform: translateX(-100%);
            }
        }

        /* Sections */
        section {
            padding: 80px 0;
            position: relative;
        }

        .section-title {
            text-align: center;
            margin-bottom: 50px;
        }

        .section-title h2 {
            font-size: 2.5rem;
            color: var(--primary);
            position: relative;
            display: inline-block;
            margin-bottom: 15px;
            font-family: 'Playfair Display', serif;
        }

        .section-title h2:after {
            content: '';
            position: absolute;
            width: 70%;
            height: 4px;
            background-color: var(--secondary);
            bottom: -10px;
            left: 15%;
        }

        .section-title p {
            font-size: 1.1rem;
            color: var(--gray);
            max-width: 700px;
            margin: 0 auto;
        }

        /* About Section */
        .about {
            background-color: var(--light);
        }

        .about-content {
            display: flex;
            align-items: center;
            gap: 50px;
        }

        .about-text {
            flex: 1;
        }

        .about-text h3 {
            font-size: 1.8rem;
            color: var(--primary);
            margin-bottom: 20px;
            font-family: 'Playfair Display', serif;
        }

        .about-text p {
            margin-bottom: 20px;
            line-height: 1.8;
            color: var(--gray);
        }

        .about-image {
            flex: 1;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            transition: all 0.5s ease;
            border: 4px solid var(--accent);
        }

        .about-image:hover {
            transform: scale(1.03);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
        }

        .about-image img {
            width: 100%;
            height: auto;
            display: block;
        }

        /* Product Description */
        .product {
            background-color: #f9f7f7;
        }

        .product-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }

        .product-card {
            background-color: var(--light);
            border-radius: 15px;
            padding: 30px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
            border: 2px solid var(--accent);
        }

        .product-card:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 5px;
            height: 100%;
            background-color: var(--secondary);
            transition: all 0.3s ease;
        }

        .product-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }

        .product-card:hover:before {
            width: 100%;
            opacity: 0.1;
        }

        .product-card h3 {
            font-size: 1.5rem;
            color: var(--primary);
            margin-bottom: 15px;
            position: relative;
            z-index: 1;
            font-family: 'Playfair Display', serif;
        }

        .product-card p {
            color: var(--gray);
            line-height: 1.6;
            position: relative;
            z-index: 1;
        }

        .product-card .icon {
            font-size: 3rem;
            color: var(--secondary);
            margin-bottom: 20px;
            opacity: 0.8;
        }

        /* Prices */
        .prices {
            background-color: var(--light);
        }

        .prices-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }

        .price-card {
            background-color: #f9f7f7;
            border-radius: 15px;
            padding: 40px 30px;
            text-align: center;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
            border: 2px solid var(--accent);
        }

        .price-card.featured {
            transform: scale(1.05);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
            border: 2px solid var(--secondary);
        }

        .price-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }

        .price-card.featured:hover {
            transform: scale(1.05) translateY(-10px);
        }

        .price-card h3 {
            font-size: 1.8rem;
            color: var(--primary);
            margin-bottom: 15px;
            font-family: 'Playfair Display', serif;
        }

        .price-card .price {
            font-size: 3rem;
            color: var(--secondary);
            font-weight: 700;
            margin-bottom: 10px;
        }

        .price-card .price span {
            font-size: 1rem;
            color: var(--gray);
        }

        .price-card ul {
            list-style: none;
            margin: 30px 0;
            text-align: left;
        }

        .price-card ul li {
            padding: 10px 0;
            border-bottom: 1px solid #eee;
            color: var(--gray);
            position: relative;
            padding-left: 25px;
        }

        .price-card ul li:before {
            content: '✓';
            position: absolute;
            left: 0;
            color: var(--secondary);
            font-weight: bold;
        }

        .price-card .price-button {
            display: inline-block;
            background-color: var(--secondary);
            color: var(--primary);
            padding: 12px 30px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
        }

        .price-card .price-button:hover {
            background-color: var(--primary);
            color: var(--secondary);
            transform: translateY(-3px);
        }

        /* Gallery */
        .gallery {
            background-color: #f9f7f7;
        }

        .gallery-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
        }

        .gallery-item {
            border-radius: 10px;
            overflow: hidden;
            height: 250px;
            position: relative;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            transition: all 0.5s ease;
            border: 3px solid var(--accent);
        }

        .gallery-item:hover {
            transform: scale(1.03);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
        }

        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: all 0.5s ease;
        }

        .gallery-item:hover img {
            transform: scale(1.1);
        }

        .gallery-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to bottom, transparent 50%, rgba(26, 35, 126, 0.8) 100%);
            display: flex;
            align-items: flex-end;
            padding: 20px;
            opacity: 0;
            transition: all 0.3s ease;
        }

        .gallery-item:hover .gallery-overlay {
            opacity: 1;
        }

        .gallery-overlay h3 {
            color: var(--light);
            font-size: 1.2rem;
        }

        /* Testimonials */
        .testimonials {
            background-color: var(--light);
        }

        .testimonials-slider {
            position: relative;
            max-width: 800px;
            margin: 0 auto;
            overflow: hidden;
        }

        .testimonial {
            display: none;
            text-align: center;
            padding: 30px;
            background-color: #f9f7f7;
            border-radius: 15px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            border: 2px solid var(--accent);
        }

        .testimonial.active {
            display: block;
            animation: fadeIn 0.5s ease;
        }

        .testimonial img {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            object-fit: cover;
            margin: 0 auto 20px;
            border: 3px solid var(--secondary);
        }

        .testimonial p {
            font-style: italic;
            margin-bottom: 20px;
            line-height: 1.8;
            color: var(--gray);
        }

        .testimonial h4 {
            font-size: 1.2rem;
            color: var(--primary);
            margin-bottom: 5px;
        }

        .testimonial span {
            color: var(--secondary);
            font-size: 0.9rem;
        }

        .testimonial-nav {
            display: flex;
            justify-content: center;
            margin-top: 20px;
        }

        .testimonial-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background-color: #ddd;
            margin: 0 5px;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .testimonial-dot.active {
            background-color: var(--secondary);
        }

        /* FAQ */
        .faq {
            background-color: #f9f7f7;
        }

        .faq-content {
            max-width: 800px;
            margin: 0 auto;
        }

        .faq-item {
            background-color: var(--light);
            border-radius: 10px;
            margin-bottom: 15px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            border: 2px solid var(--accent);
        }

        .faq-question {
            padding: 20px;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-weight: 600;
            color: var(--primary);
            transition: all 0.3s ease;
        }

        .faq-question:hover {
            background-color: #f9f7f7;
        }

        .faq-question h3 {
            font-size: 1.2rem;
        }

        .faq-icon {
            font-size: 1.5rem;
            color: var(--secondary);
            transition: all 0.3s ease;
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: all 0.3s ease;
            background-color: #f9f7f7;
        }

        .faq-answer p {
            padding: 0 20px 20px;
            color: var(--gray);
            line-height: 1.6;
        }

        .faq-item.active .faq-answer {
            max-height: 500px;
        }

        .faq-item.active .faq-icon {
            transform: rotate(45deg);
        }

        /* Why Us */
        .why-us {
            background-color: var(--light);
        }

        .why-us-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
        }

        .why-us-card {
            text-align: center;
            padding: 30px;
            border-radius: 15px;
            background-color: #f9f7f7;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
            border: 2px solid var(--accent);
        }

        .why-us-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }

        .why-us-card .icon {
            font-size: 3rem;
            color: var(--secondary);
            margin-bottom: 20px;
        }

        .why-us-card h3 {
            font-size: 1.5rem;
            color: var(--primary);
            margin-bottom: 15px;
            font-family: 'Playfair Display', serif;
        }

        .why-us-card p {
            color: var(--gray);
            line-height: 1.6;
        }

        /* How It Works */
        .how-it-works {
            background-color: #f9f7f7;
        }

        .steps {
            display: flex;
            justify-content: space-between;
            position: relative;
            max-width: 900px;
            margin: 0 auto;
        }

        .steps:before {
            content: '';
            position: absolute;
            top: 50px;
            left: 0;
            width: 100%;
            height: 4px;
            background-color: var(--accent);
            z-index: 1;
        }

        .step {
            text-align: center;
            position: relative;
            z-index: 2;
            width: 30%;
        }

        .step-number {
            width: 100px;
            height: 100px;
            border-radius: 50%;
            background-color: var(--secondary);
            color: var(--primary);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            font-weight: 700;
            margin: 0 auto 20px;
            box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
            transition: all 0.3s ease;
        }

        .step:hover .step-number {
            transform: scale(1.1);
            box-shadow: 0 8px 20px rgba(255, 215, 0, 0.5);
        }

        .step h3 {
            font-size: 1.3rem;
            color: var(--primary);
            margin-bottom: 10px;
            font-family: 'Playfair Display', serif;
        }

        .step p {
            color: var(--gray);
            line-height: 1.6;
        }

        /* Contact Form */
        .contact {
            background-color: var(--light);
        }

        .contact-form {
            max-width: 600px;
            margin: 0 auto;
            background-color: #f9f7f7;
            padding: 40px;
            border-radius: 15px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            border: 2px solid var(--accent);
        }

        .form-group {
            margin-bottom: 20px;
        }

        .form-group label {
            display: block;
            margin-bottom: 8px;
            color: var(--primary);
            font-weight: 500;
        }

        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 12px 15px;
            border: 1px solid #ddd;
            border-radius: 8px;
            font-size: 16px;
            transition: all 0.3s ease;
        }

        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--secondary);
            box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.2);
        }

        .form-button {
            background-color: var(--secondary);
            color: var(--primary);
            border: none;
            padding: 15px 40px;
            border-radius: 50px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            display: block;
            margin: 30px auto 0;
        }

        .form-button:hover {
            background-color: var(--primary);
            color: var(--secondary);
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }

        /* Disclaimer */
        .disclaimer {
            background-color: var(--primary);
            color: var(--light);
            padding: 40px 0;
            text-align: center;
        }

        .disclaimer p {
            max-width: 800px;
            margin: 0 auto;
            line-height: 1.6;
            font-size: 0.9rem;
        }

        /* Footer */
        footer {
            background-color: var(--primary);
            color: var(--light);
            padding: 50px 0 20px;
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 30px;
        }

        .footer-logo {
            font-size: 24px;
            font-weight: 700;
            color: var(--secondary);
            margin-bottom: 20px;
        }

        .footer-links h3 {
            font-size: 18px;
            margin-bottom: 20px;
            color: var(--secondary);
        }

        .footer-links ul {
            list-style: none;
        }

        .footer-links ul li {
            margin-bottom: 10px;
        }

        .footer-links ul li a {
            color: var(--light);
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .footer-links ul li a:hover {
            color: var(--secondary);
            padding-left: 5px;
        }

        .footer-contact h3 {
            font-size: 18px;
            margin-bottom: 20px;
            color: var(--secondary);
        }

        .footer-contact p {
            margin-bottom: 10px;
            display: flex;
            align-items: center;
        }

        .footer-contact .icon {
            margin-right: 10px;
            color: var(--secondary);
        }

        .footer-bottom {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            font-size: 14px;
            color: var(--accent);
        }

        /* Cookie Banner */
        .cookie-banner {
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            background-color: var(--primary);
            color: var(--light);
            padding: 20px;
            z-index: 1000;
            display: flex;
            justify-content: space-between;
            align-items: center;
            box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.1);
            transform: translateY(100%);
            transition: transform 0.5s ease;
        }

        .cookie-banner.show {
            transform: translateY(0);
        }

        .cookie-text {
            max-width: 80%;
            line-height: 1.6;
        }

        .cookie-buttons {
            display: flex;
            gap: 15px;
        }

        .cookie-button {
            padding: 10px 20px;
            border-radius: 50px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            border: none;
        }

        .cookie-accept {
            background-color: var(--secondary);
            color: var(--primary);
        }

        .cookie-accept:hover {
            background-color: var(--accent);
        }

        .cookie-reject {
            background-color: transparent;
            color: var(--light);
            border: 1px solid var(--light);
        }

        .cookie-reject:hover {
            background-color: var(--light);
            color: var(--primary);
        }

        /* Popup */
        .popup {
            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: 2000;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
        }

        .popup.show {
            opacity: 1;
            visibility: visible;
        }

        .popup-content {
            background-color: var(--light);
            padding: 40px;
            border-radius: 15px;
            text-align: center;
            max-width: 500px;
            width: 90%;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
            transform: scale(0.8);
            transition: all 0.3s ease;
            border: 2px solid var(--secondary);
        }

        .popup.show .popup-content {
            transform: scale(1);
        }

        .popup-content h3 {
            font-size: 1.8rem;
            color: var(--primary);
            margin-bottom: 20px;
            font-family: 'Playfair Display', serif;
        }

        .popup-content p {
            margin-bottom: 30px;
            line-height: 1.6;
            color: var(--gray);
        }

        .popup-close {
            background-color: var(--secondary);
            color: var(--primary);
            border: none;
            padding: 12px 30px;
            border-radius: 50px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .popup-close:hover {
            background-color: var(--primary);
            color: var(--secondary);
        }

        /* Animations */
        @keyframes fadeIn {
            from {
                opacity: 0;
            }
            to {
                opacity: 1;
            }
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes fadeInLeft {
            from {
                opacity: 0;
                transform: translateX(-30px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes fadeInRight {
            from {
                opacity: 0;
                transform: translateX(30px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        .fade-in {
            opacity: 0;
            animation: fadeIn 0.8s ease forwards;
        }

        .fade-up {
            opacity: 0;
            animation: fadeInUp 0.8s ease forwards;
        }

        .fade-left {
            opacity: 0;
            animation: fadeInLeft 0.8s ease forwards;
        }

        .fade-right {
            opacity: 0;
            animation: fadeInRight 0.8s ease forwards;
        }

        /* Responsive */
        @media (max-width: 992px) {
            .hero h1 {
                font-size: 3rem;
            }

            .hero p {
                font-size: 1.2rem;
            }

            .about-content {
                flex-direction: column;
            }

            .steps {
                flex-direction: column;
                align-items: center;
            }

            .steps:before {
                width: 4px;
                height: 100%;
                top: 0;
                left: 50%;
                transform: translateX(-50%);
            }

            .step {
                width: 100%;
                margin-bottom: 50px;
            }

            .step-number {
                margin-bottom: 30px;
            }
        }

        @media (max-width: 768px) {
            nav ul {
                position: fixed;
                top: 70px;
                left: 0;
                width: 100%;
                height: calc(100vh - 70px);
                background-color: var(--primary);
                flex-direction: column;
                justify-content: flex-start;
                align-items: center;
                padding-top: 50px;
                transform: translateX(-100%);
                transition: transform 0.5s ease;
            }

            nav ul.show {
                transform: translateX(0);
            }

            nav ul li {
                margin: 0 0 30px 0;
            }

            .burger {
                display: block;
            }

            .hero h1 {
                font-size: 2.5rem;
            }

            .hero p {
                font-size: 1rem;
            }

            .section-title h2 {
                font-size: 2rem;
            }

            .cookie-banner {
                flex-direction: column;
                gap: 15px;
            }

            .cookie-text {
                max-width: 100%;
            }
        }

        @media (max-width: 576px) {
            .hero h1 {
                font-size: 2rem;
            }

            .section-title h2 {
                font-size: 1.8rem;
            }

            .price-card.featured {
                transform: scale(1);
            }

            .price-card.featured:hover {
                transform: translateY(-10px);
            }
        }

