* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Georgia', serif;
        }
        
        body {
            background-color: #F5E6D3;
            color: #5D2A42;
            overflow-x: hidden;
        }
        
        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            background-color: rgba(93, 42, 66, 0.95);
            z-index: 1000;
            padding: 15px 0;
            transition: all 0.3s ease;
            box-shadow: 0 2px 10px rgba(0,0,0,0.2);
        }
        
        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        .logo {
            font-size: 28px;
            font-weight: bold;
            color: #D4AF37;
            text-decoration: none;
            letter-spacing: 1px;
            font-family: 'Playfair Display', serif;
        }
        
        .nav-links {
            display: flex;
            list-style: none;
        }
        
        .nav-links li {
            margin-left: 30px;
        }
        
        .nav-links a {
            color: #F5E6D3;
            text-decoration: none;
            font-size: 16px;
            transition: color 0.3s ease;
            position: relative;
        }
        
        .nav-links a:hover {
            color: #D4AF37;
        }
        
        .nav-links a::after {
            content: '';
            position: absolute;
            width: 0;
            height: 1px;
            bottom: -5px;
            left: 0;
            background-color: #D4AF37;
            transition: width 0.3s ease;
        }
        
        .nav-links a:hover::after {
            width: 100%;
        }
        
        .burger {
            display: none;
            cursor: pointer;
        }
        
        .burger div {
            width: 25px;
            height: 3px;
            background-color: #F5E6D3;
            margin: 5px 0;
            transition: all 0.3s ease;
        }
        
        .hero {
            height: 100vh;
            background: linear-gradient(rgba(93, 42, 66, 0.7), rgba(93, 42, 66, 0.9)), url('../img/20.webp');
            background-size: cover;
            background-position: center;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            padding: 0 20px;
            position: relative;
        }
        
        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: radial-gradient(circle at center, rgba(212, 175, 55, 0.2) 0%, rgba(93, 42, 66, 0) 70%);
            z-index: 1;
        }
        
        .hero-content {
            max-width: 800px;
            z-index: 2;
            position: relative;
        }
        
        .hero h1 {
            font-size: 52px;
            margin-bottom: 20px;
            color: #F5E6D3;
            text-transform: uppercase;
            letter-spacing: 3px;
            font-family: 'Playfair Display', serif;
        }
        
        .hero p {
            font-size: 20px;
            margin-bottom: 30px;
            line-height: 1.6;
            color: #F5E6D3;
        }
        
        .cta-button {
            display: inline-block;
            background-color: #D4AF37;
            color: #5D2A42;
            padding: 15px 30px;
            border-radius: 0;
            text-decoration: none;
            font-weight: bold;
            text-transform: uppercase;
            transition: all 0.3s ease;
            font-size: 18px;
            letter-spacing: 1px;
            border: 2px solid #D4AF37;
        }
        
        .cta-button:hover {
            background-color: transparent;
            color: #D4AF37;
        }
        
        .about {
            padding: 100px 0;
            background-color: #FFF;
        }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 60px;
        }
        
        .section-title h2 {
            font-size: 42px;
            color: #5D2A42;
            margin-bottom: 15px;
            text-transform: uppercase;
            letter-spacing: 2px;
            font-family: 'Playfair Display', serif;
        }
        
        .section-title p {
            font-size: 18px;
            max-width: 700px;
            margin: 0 auto;
            line-height: 1.6;
            color: #5D2A42;
        }
        
        .about-content {
            display: flex;
            align-items: center;
            gap: 50px;
        }
        
        .about-text {
            flex: 1;
        }
        
        .about-text h3 {
            font-size: 28px;
            margin-bottom: 20px;
            color: #5D2A42;
            text-transform: uppercase;
        }
        
        .about-text p {
            margin-bottom: 20px;
            line-height: 1.6;
            font-size: 16px;
            color: #5D2A42;
        }
        
        .about-image {
            flex: 1;
            height: 400px;
            background: url('../img/05.webp');
            background-size: cover;
            background-position: center;
            border: 5px solid #D4AF37;
            position: relative;
        }
        
        .about-image::after {
            content: '';
            position: absolute;
            top: -10px;
            left: -10px;
            right: -10px;
            bottom: -10px;
            border: 1px solid #5D2A42;
            z-index: -1;
        }
        
        .products {
            padding: 100px 0;
            background-color: #F5E6D3;
        }
        
        .products-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }
        
        .product-card {
            background-color: #FFF;
            border: 1px solid #D4AF37;
            overflow: hidden;
            transition: all 0.3s ease;
            position: relative;
        }
        
        .product-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(93, 42, 66, 0.1);
        }
        
        .product-image {
            height: 200px;
            background-size: cover;
            background-position: center;
            position: relative;
        }
        
        .product-image::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 30%;
            background: linear-gradient(to top, rgba(93, 42, 66, 0.8), transparent);
        }
        
        .product-content {
            padding: 25px;
        }
        
        .product-content h3 {
            font-size: 24px;
            margin-bottom: 15px;
            color: #5D2A42;
            text-transform: uppercase;
        }
        
        .product-content p {
            margin-bottom: 20px;
            line-height: 1.6;
            color: #5D2A42;
        }
        
        .prices {
            padding: 100px 0;
            background-color: #FFF;
        }
        
        .prices-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }
        
        .price-card {
            background-color: #F5E6D3;
            border: 2px solid #D4AF37;
            padding: 40px 30px;
            text-align: center;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }
        
        .price-card.featured {
            background-color: #5D2A42;
            color: #F5E6D3;
            transform: scale(1.05);
        }
        
        .price-card.featured::before {
            content: "Popular";
            position: absolute;
            top: 15px;
            right: -35px;
            background-color: #D4AF37;
            color: #5D2A42;
            padding: 5px 40px;
            transform: rotate(45deg);
            font-size: 14px;
            font-weight: bold;
            text-transform: uppercase;
        }
        
        .price-card h3 {
            font-size: 24px;
            margin-bottom: 15px;
            text-transform: uppercase;
        }
        
        .price {
            font-size: 48px;
            margin-bottom: 20px;
            color: #5D2A42;
        }
        
        .price-card.featured .price {
            color: #D4AF37;
        }
        
        .price span {
            font-size: 18px;
            color: #5D2A42;
        }
        
        .price-card.featured .price span {
            color: #F5E6D3;
        }
        
        .price-features {
            list-style: none;
            margin-bottom: 30px;
            text-align: left;
        }
        
        .price-features li {
            margin-bottom: 12px;
            padding-left: 25px;
            position: relative;
        }
        
        .price-features li::before {
            content: "✓";
            position: absolute;
            left: 0;
            color: #D4AF37;
            font-weight: bold;
        }
        
        .price-card.featured .price-features li::before {
            color: #F5E6D3;
        }
        
        .gallery {
            padding: 100px 0;
            background-color: #F5E6D3;
        }
        
        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
        }
        
        .gallery-item {
            height: 250px;
            background-size: cover;
            background-position: center;
            border: 3px solid #D4AF37;
            transition: all 0.3s ease;
            cursor: pointer;
        }
        
        .gallery-item:hover {
            transform: scale(1.05);
            box-shadow: 0 10px 20px rgba(93, 42, 66, 0.2);
        }
        
        .feedback {
            padding: 100px 0;
            background-color: #FFF;
        }
        
        .feedback-slider {
            max-width: 800px;
            margin: 0 auto;
            position: relative;
        }
        
        .feedback-card {
            background-color: #F5E6D3;
            border: 2px solid #D4AF37;
            border-radius: 0;
            padding: 30px;
            text-align: center;
            position: relative;
        }
        
        .feedback-card::before {
            content: '"';
            position: absolute;
            top: 10px;
            left: 20px;
            font-size: 60px;
            color: #D4AF37;
            opacity: 0.5;
            font-family: Georgia, serif;
        }
        
        .feedback-card p {
            font-style: italic;
            margin-bottom: 20px;
            line-height: 1.6;
            font-size: 16px;
            color: #5D2A42;
        }
        
        .feedback-card h4 {
            font-size: 20px;
            color: #5D2A42;
            text-transform: uppercase;
        }
        
        .feedback-card .stars {
            color: #D4AF37;
            margin-bottom: 15px;
            font-size: 20px;
        }
        
        .slider-controls {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin-top: 30px;
        }
        
        .slider-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background-color: #D4AF37;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .slider-dot.active {
            background-color: #5D2A42;
            transform: scale(1.2);
        }
        
        .faq {
            padding: 100px 0;
            background-color: #F5E6D3;
        }
        
        .faq-container {
            max-width: 800px;
            margin: 0 auto;
        }
        
        .faq-item {
            background-color: #FFF;
            border: 1px solid #D4AF37;
            margin-bottom: 15px;
            overflow: hidden;
        }
        
        .faq-question {
            padding: 20px;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: background-color 0.3s ease;
        }
        
        .faq-question:hover {
            background-color: rgba(212, 175, 55, 0.1);
        }
        
        .faq-question h3 {
            font-size: 18px;
            text-transform: uppercase;
        }
        
        .faq-toggle {
            font-size: 24px;
            color: #D4AF37;
            transition: transform 0.3s ease;
        }
        
        .faq-answer {
            padding: 0 20px;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease, padding 0.3s ease;
        }
        
        .faq-answer.active {
            padding: 20px;
            max-height: 300px;
        }
        
        .faq-answer p {
            line-height: 1.6;
        }
        
        .contact {
            padding: 100px 0;
            background-color: #FFF;
        }
        
        .contact-form {
            max-width: 600px;
            margin: 0 auto;
            background-color: #F5E6D3;
            border: 2px solid #D4AF37;
            padding: 40px;
        }
        
        .form-group {
            margin-bottom: 20px;
        }
        
        .form-group label {
            display: block;
            margin-bottom: 8px;
            color: #5D2A42;
            font-weight: bold;
            text-transform: uppercase;
        }
        
        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 12px;
            background-color: #FFF;
            border: 1px solid #D4AF37;
            color: #5D2A42;
            font-size: 16px;
            transition: border-color 0.3s ease;
        }
        
        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: #5D2A42;
        }
        
        .form-button {
            background-color: #5D2A42;
            color: #F5E6D3;
            border: none;
            padding: 15px 30px;
            font-weight: bold;
            text-transform: uppercase;
            cursor: pointer;
            transition: all 0.3s ease;
            width: 100%;
            font-size: 18px;
        }
        
        .form-button:hover {
            background-color: #D4AF37;
            color: #5D2A42;
        }
        
        .disclaimer {
            background-color: #5D2A42;
            color: #F5E6D3;
            padding: 20px;
            text-align: center;
            font-size: 14px;
        }
        
        footer {
            background-color: #5D2A42;
            padding: 50px 0 20px;
            color: #F5E6D3;
        }
        
        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
        }
        
        .footer-column h3 {
            font-size: 20px;
            margin-bottom: 20px;
            color: #D4AF37;
            text-transform: uppercase;
            font-family: 'Playfair Display', serif;
        }
        
        .footer-column ul {
            list-style: none;
        }
        
        .footer-column ul li {
            margin-bottom: 10px;
        }
        
        .footer-column ul li a {
            color: #F5E6D3;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        
        .footer-column ul li a:hover {
            color: #D4AF37;
        }
        
        .footer-bottom {
            text-align: center;
            margin-top: 30px;
            padding-top: 20px;
            border-top: 1px solid rgba(245, 230, 211, 0.3);
            color: #F5E6D3;
            font-size: 14px;
        }
        
        .cookie-banner {
            position: fixed;
            bottom: 20px;
            left: 20px;
            right: 20px;
            background-color: #5D2A42;
            border: 2px solid #D4AF37;
            padding: 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            z-index: 1000;
            transform: translateY(150%);
            transition: transform 0.5s ease;
        }
        
        .cookie-banner.active {
            transform: translateY(0);
        }
        
        .cookie-text {
            flex: 1;
            margin-right: 20px;
            color: #F5E6D3;
        }
        
        .cookie-text p {
            font-size: 14px;
            line-height: 1.5;
        }
        
        .cookie-text a {
            color: #D4AF37;
            text-decoration: none;
        }
        
        .cookie-buttons {
            display: flex;
            gap: 10px;
        }
        
        .cookie-button {
            padding: 10px 20px;
            font-size: 14px;
            cursor: pointer;
            transition: all 0.3s ease;
            border: none;
            text-transform: uppercase;
            font-weight: bold;
        }
        
        .cookie-accept {
            background-color: #D4AF37;
            color: #5D2A42;
        }
        
        .cookie-accept:hover {
            background-color: #F5E6D3;
        }
        
        .cookie-reject {
            background-color: transparent;
            color: #F5E6D3;
            border: 1px solid #F5E6D3;
        }
        
        .cookie-reject:hover {
            background-color: rgba(245, 230, 211, 0.1);
        }
        
        .popup {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(93, 42, 66, 0.8);
            display: flex;
            justify-content: center;
            align-items: center;
            z-index: 2000;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
        }
        
        .popup.active {
            opacity: 1;
            visibility: visible;
        }
        
        .popup-content {
            background-color: #FFF;
            border: 2px solid #D4AF37;
            padding: 40px;
            text-align: center;
            max-width: 500px;
            width: 90%;
            transform: scale(0.7);
            transition: transform 0.3s ease;
        }
        
        .popup.active .popup-content {
            transform: scale(1);
        }
        
        .popup h3 {
            color: #5D2A42;
            margin-bottom: 20px;
            font-size: 24px;
            text-transform: uppercase;
        }
        
        .popup p {
            margin-bottom: 30px;
            line-height: 1.6;
            color: #5D2A42;
        }
        
        .popup-close {
            background-color: #5D2A42;
            color: #F5E6D3;
            border: none;
            padding: 12px 25px;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s ease;
            text-transform: uppercase;
        }
        
        .popup-close:hover {
            background-color: #D4AF37;
            color: #5D2A42;
        }
        
        @media (max-width: 768px) {
            .nav-links {
                position: absolute;
                right: 0;
                top: 70px;
                background-color: #5D2A42;
                width: 100%;
                flex-direction: column;
                align-items: center;
                padding: 20px 0;
                transform: translateY(-150%);
                transition: transform 0.3s ease;
                box-shadow: 0 5px 15px rgba(0,0,0,0.3);
            }
            
            .nav-links.active {
                transform: translateY(0);
            }
            
            .nav-links li {
                margin: 15px 0;
            }
            
            .burger {
                display: block;
            }
            
            .hero h1 {
                font-size: 40px;
            }
            
            .about-content {
                flex-direction: column;
            }
            
            .about-image {
                height: 300px;
                margin-bottom: 30px;
            }
            
            .cookie-banner {
                flex-direction: column;
                text-align: center;
            }
            
            .cookie-text {
                margin-right: 0;
                margin-bottom: 15px;
            }
        }

