:root {
            --primary-color: #5D4037;
            --secondary-color: #8D6E63;
            --accent-color: #D7CCC8;
            --background-color: #EFEBE9;
            --text-color: #3E2723;
            --card-bg: #FFFFFF;
            --gold-color: #D4AF37;
            --border-color: #BCAAA4;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Crimson Text', 'Georgia', serif;
            background-color: var(--background-color);
            color: var(--text-color);
            line-height: 1.6;
            overflow-x: hidden;
            position: relative;
        }
        
        body::before {
            content: "";
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%238D6E63' fill-opacity='0.05' fill-rule='evenodd'/%3E%3C/svg%3E");
            z-index: -1;
            opacity: 0.5;
        }
        
        .container {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        /* Header Styles */
        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            background-color: rgba(93, 64, 55, 0.95);
            z-index: 1000;
            padding: 15px 0;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
            border-bottom: 2px solid var(--gold-color);
        }
        
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .logo {
            font-size: 28px;
            font-weight: bold;
            color: var(--accent-color);
            text-decoration: none;
            letter-spacing: 2px;
            text-transform: uppercase;
            font-family: 'Playfair Display', 'Georgia', serif;
            position: relative;
            padding-left: 40px;
        }
        
        .logo::before {
            content: '♛';
            position: absolute;
            left: 0;
            top: 50%;
            transform: translateY(-50%);
            color: var(--gold-color);
            font-size: 24px;
        }
        
        nav ul {
            display: flex;
            list-style: none;
        }
        
        nav ul li {
            margin-left: 30px;
        }
        
        nav ul li a {
            color: var(--accent-color);
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s ease;
            position: relative;
            padding-bottom: 5px;
            font-size: 16px;
            letter-spacing: 1px;
        }
        
        nav ul li a:hover {
            color: var(--gold-color);
        }
        
        nav ul li a::after {
            content: '';
            position: absolute;
            width: 0;
            height: 1px;
            bottom: 0;
            left: 0;
            background-color: var(--gold-color);
            transition: width 0.3s ease;
        }
        
        nav ul li a:hover::after {
            width: 100%;
        }
        
        .burger {
            display: none;
            cursor: pointer;
            flex-direction: column;
            justify-content: space-between;
            width: 30px;
            height: 21px;
        }
        
        .burger div {
            width: 100%;
            height: 2px;
            background-color: var(--accent-color);
            transition: all 0.3s ease;
        }
        
        /* Hero Section */
        .hero {
            height: 100vh;
            background: linear-gradient(rgba(93, 64, 55, 0.7), rgba(93, 64, 55, 0.8)), url('../img/08.webp');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        
        .hero::after {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23D4AF37' fill-opacity='0.1'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
        }
        
        .hero-content {
            z-index: 2;
            max-width: 800px;
            padding: 0 20px;
            background-color: rgba(255, 255, 255, 0.9);
            border: 1px solid var(--border-color);
            border-radius: 5px;
            padding: 40px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
            position: relative;
        }
        
        .hero-content::before {
            content: "";
            position: absolute;
            top: -15px;
            left: -15px;
            right: -15px;
            bottom: -15px;
            border: 1px solid var(--gold-color);
            border-radius: 5px;
            z-index: -1;
        }
        
        .hero h1 {
            font-size: 3.5rem;
            margin-bottom: 20px;
            color: var(--primary-color);
            text-transform: uppercase;
            letter-spacing: 3px;
            position: relative;
            display: inline-block;
            font-family: 'Playfair Display', 'Georgia', serif;
        }
        
        .hero h1::after {
            content: '';
            position: absolute;
            width: 60%;
            height: 2px;
            background-color: var(--gold-color);
            bottom: -10px;
            left: 20%;
        }
        
        .hero p {
            font-size: 1.2rem;
            margin-bottom: 30px;
            color: var(--text-color);
        }
        
        .btn {
            display: inline-block;
            padding: 12px 30px;
            background-color: var(--primary-color);
            color: var(--accent-color);
            text-decoration: none;
            border-radius: 0;
            font-weight: bold;
            transition: all 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 1px;
            border: 1px solid var(--primary-color);
            margin-right: 15px;
            font-family: 'Playfair Display', 'Georgia', serif;
            position: relative;
            overflow: hidden;
        }
        
        .btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background-color: var(--gold-color);
            transition: left 0.3s ease;
            z-index: -1;
        }
        
        .btn:hover::before {
            left: 0;
        }
        
        .btn:hover {
            color: var(--primary-color);
            border-color: var(--gold-color);
        }
        
        .btn-secondary {
            background-color: transparent;
            color: var(--primary-color);
            border-color: var(--primary-color);
        }
        
        .btn-secondary::before {
            background-color: var(--primary-color);
        }
        
        .btn-secondary:hover {
            color: var(--accent-color);
        }
        
        /* About Section */
        .about {
            padding: 100px 0;
            background-color: var(--background-color);
            position: relative;
        }
        
        .about::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: linear-gradient(90deg, var(--primary-color), var(--gold-color), var(--secondary-color));
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 60px;
        }
        
        .section-title h2 {
            font-size: 2.5rem;
            color: var(--primary-color);
            margin-bottom: 15px;
            text-transform: uppercase;
            letter-spacing: 2px;
            position: relative;
            display: inline-block;
            font-family: 'Playfair Display', 'Georgia', serif;
        }
        
        .section-title h2::after {
            content: '';
            position: absolute;
            width: 50%;
            height: 2px;
            background-color: var(--gold-color);
            bottom: -10px;
            left: 25%;
        }
        
        .section-title p {
            font-size: 1.1rem;
            max-width: 700px;
            margin: 20px auto 0;
            color: var(--text-color);
        }
        
        .about-content {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 50px;
        }
        
        .about-text {
            flex: 1;
            min-width: 300px;
            background-color: var(--card-bg);
            padding: 30px;
            border: 1px solid var(--border-color);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            position: relative;
        }
        
        .about-text::before {
            content: "";
            position: absolute;
            top: -10px;
            left: -10px;
            right: -10px;
            bottom: -10px;
            border: 1px solid var(--gold-color);
            z-index: -1;
        }
        
        .about-text h3 {
            font-size: 1.8rem;
            margin-bottom: 20px;
            color: var(--primary-color);
            position: relative;
            padding-left: 30px;
            font-family: 'Playfair Display', 'Georgia', serif;
        }
        
        .about-text h3::before {
            content: '❦';
            position: absolute;
            left: 0;
            top: 0;
            color: var(--gold-color);
            font-size: 20px;
        }
        
        .about-text p {
            margin-bottom: 20px;
            font-size: 1rem;
        }
        
        .about-image {
            flex: 1;
            min-width: 300px;
            text-align: center;
            position: relative;
        }
        
        .about-image img {
            max-width: 100%;
            border: 10px solid var(--card-bg);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
            transition: all 0.5s ease;
        }
        
        .about-image::before {
            content: "";
            position: absolute;
            top: -15px;
            left: -15px;
            right: -15px;
            bottom: -15px;
            border: 1px solid var(--gold-color);
            z-index: -1;
        }
        
        /* Products Section */
        .products {
            padding: 100px 0;
            background-color: var(--background-color);
            position: relative;
        }
        
        .products::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: linear-gradient(90deg, var(--gold-color), var(--secondary-color), var(--primary-color));
        }
        
        .products-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }
        
        .product-card {
            background-color: var(--card-bg);
            border-radius: 0;
            overflow: hidden;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
            position: relative;
            border: 1px solid var(--border-color);
        }
        
        .product-card::before {
            content: "";
            position: absolute;
            top: -5px;
            left: -5px;
            right: -5px;
            bottom: -5px;
            border: 1px solid var(--gold-color);
            z-index: -1;
            opacity: 0;
            transition: opacity 0.3s ease;
        }
        
        .product-card:hover::before {
            opacity: 1;
        }
        
        .product-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
        }
        
        .product-image {
            height: 200px;
            overflow: hidden;
            position: relative;
        }
        
        .product-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .product-card:hover .product-image img {
            transform: scale(1.1);
        }
        
        .product-info {
            padding: 20px;
            position: relative;
        }
        
        .product-info::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 30px;
            height: 2px;
            background-color: var(--gold-color);
        }
        
        .product-info h3 {
            font-size: 1.5rem;
            margin-bottom: 10px;
            color: var(--primary-color);
            font-family: 'Playfair Display', 'Georgia', serif;
        }
        
        .product-info p {
            margin-bottom: 15px;
            font-size: 0.95rem;
            color: var(--text-color);
        }
        
        .product-info .btn {
            font-size: 0.9rem;
            padding: 8px 20px;
        }
        
        /* Prices Section */
        .prices {
            padding: 100px 0;
            background-color: var(--background-color);
            position: relative;
        }
        
        .prices::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: linear-gradient(90deg, var(--secondary-color), var(--primary-color), var(--gold-color));
        }
        
        .prices-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }
        
        .price-card {
            background-color: var(--card-bg);
            border-radius: 0;
            overflow: hidden;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
            text-align: center;
            transition: all 0.3s ease;
            position: relative;
            border: 1px solid var(--border-color);
        }
        
        .price-card.featured {
            transform: scale(1.05);
            border: 2px solid var(--gold-color);
        }
        
        .price-card::before {
            content: "";
            position: absolute;
            top: -5px;
            left: -5px;
            right: -5px;
            bottom: -5px;
            border: 1px solid var(--gold-color);
            z-index: -1;
            opacity: 0;
            transition: opacity 0.3s ease;
        }
        
        .price-card:hover::before {
            opacity: 1;
        }
        
        .price-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
        }
        
        .price-card.featured:hover {
            transform: scale(1.05) translateY(-10px);
        }
        
        .price-header {
            padding: 20px;
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            color: var(--accent-color);
            position: relative;
        }
        
        .price-card.featured .price-header {
            background: linear-gradient(135deg, var(--gold-color), var(--primary-color));
        }
        
        .price-header h3 {
            font-size: 1.8rem;
            margin-bottom: 10px;
            text-transform: uppercase;
            font-family: 'Playfair Display', 'Georgia', serif;
        }
        
        .price {
            font-size: 2.5rem;
            font-weight: bold;
            margin-bottom: 10px;
            color: var(--gold-color);
        }
        
        .price-period {
            font-size: 0.9rem;
            opacity: 0.8;
        }
        
        .price-features {
            padding: 30px 20px;
        }
        
        .price-features ul {
            list-style: none;
            text-align: left;
        }
        
        .price-features li {
            margin-bottom: 15px;
            padding-left: 25px;
            position: relative;
        }
        
        .price-features li::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: var(--gold-color);
            font-weight: bold;
        }
        
        .price-footer {
            padding: 20px;
        }
        
        /* Gallery Section */
        .gallery {
            padding: 100px 0;
            background-color: var(--background-color);
            position: relative;
        }
        
        .gallery::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: linear-gradient(90deg, var(--primary-color), var(--gold-color), var(--secondary-color));
        }
        
        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 20px;
        }
        
        .gallery-item {
            height: 250px;
            overflow: hidden;
            border-radius: 0;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            position: relative;
            cursor: pointer;
            transition: all 0.3s ease;
            border: 1px solid var(--border-color);
        }
        
        .gallery-item::before {
            content: "";
            position: absolute;
            top: -5px;
            left: -5px;
            right: -5px;
            bottom: -5px;
            border: 1px solid var(--gold-color);
            z-index: -1;
            opacity: 0;
            transition: opacity 0.3s ease;
        }
        
        .gallery-item:hover::before {
            opacity: 1;
        }
        
        .gallery-item:hover {
            transform: scale(1.03);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
        }
        
        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 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(0deg, rgba(93, 64, 55, 0.8), transparent);
            display: flex;
            align-items: flex-end;
            justify-content: center;
            opacity: 0;
            transition: opacity 0.3s ease;
            padding-bottom: 20px;
        }
        
        .gallery-item:hover .gallery-overlay {
            opacity: 1;
        }
        
        .gallery-overlay span {
            color: var(--accent-color);
            font-size: 1.2rem;
            font-weight: bold;
            text-transform: uppercase;
            font-family: 'Playfair Display', 'Georgia', serif;
        }
        
        /* Feedback Section */
        .feedback {
            padding: 100px 0;
            background-color: var(--background-color);
            position: relative;
        }
        
        .feedback::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: linear-gradient(90deg, var(--gold-color), var(--primary-color), var(--secondary-color));
        }
        
        .feedback-container {
            max-width: 800px;
            margin: 0 auto;
            position: relative;
        }
        
        .feedback-slider {
            overflow: hidden;
        }
        
        .feedback-track {
            display: flex;
            transition: transform 0.5s ease;
        }
        
        .feedback-item {
            min-width: 100%;
            padding: 30px;
            background-color: var(--card-bg);
            border-radius: 0;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
            text-align: center;
            position: relative;
            border: 1px solid var(--border-color);
        }
        
        .feedback-item::before {
            content: "";
            position: absolute;
            top: -5px;
            left: -5px;
            right: -5px;
            bottom: -5px;
            border: 1px solid var(--gold-color);
            z-index: -1;
        }
        
        .feedback-item::after {
            content: '"';
            position: absolute;
            top: 10px;
            left: 20px;
            font-size: 4rem;
            color: var(--gold-color);
            opacity: 0.3;
            font-family: 'Playfair Display', 'Georgia', serif;
        }
        
        .feedback-item img {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            object-fit: cover;
            margin: 0 auto 20px;
            border: 3px solid var(--gold-color);
        }
        
        .feedback-item p {
            font-style: italic;
            margin-bottom: 20px;
            font-size: 1.1rem;
        }
        
        .feedback-item h4 {
            font-size: 1.2rem;
            color: var(--primary-color);
            margin-bottom: 5px;
            font-family: 'Playfair Display', 'Georgia', serif;
        }
        
        .feedback-item .rating {
            color: var(--gold-color);
            margin-bottom: 15px;
        }
        
        .feedback-nav {
            display: flex;
            justify-content: center;
            margin-top: 30px;
        }
        
        .feedback-nav button {
            background: none;
            border: 1px solid var(--primary-color);
            color: var(--primary-color);
            font-size: 1.5rem;
            margin: 0 10px;
            cursor: pointer;
            transition: all 0.3s ease;
            width: 40px;
            height: 40px;
            border-radius: 0;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .feedback-nav button:hover {
            background-color: var(--primary-color);
            color: var(--accent-color);
        }
        
        /* FAQ Section */
        .faq {
            padding: 100px 0;
            background-color: var(--background-color);
            position: relative;
        }
        
        .faq::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: linear-gradient(90deg, var(--secondary-color), var(--gold-color), var(--primary-color));
        }
        
        .faq-container {
            max-width: 800px;
            margin: 0 auto;
        }
        
        .faq-item {
            margin-bottom: 20px;
            background-color: var(--card-bg);
            border-radius: 0;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
            border: 1px solid var(--border-color);
        }
        
        .faq-item::before {
            content: "";
            position: absolute;
            top: -5px;
            left: -5px;
            right: -5px;
            bottom: -5px;
            border: 1px solid var(--gold-color);
            z-index: -1;
            opacity: 0;
            transition: opacity 0.3s ease;
        }
        
        .faq-item:hover::before {
            opacity: 1;
        }
        
        .faq-question {
            padding: 20px;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: background-color 0.3s ease;
            position: relative;
        }
        
        .faq-question::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 5px;
            height: 100%;
            background-color: var(--gold-color);
        }
        
        .faq-question:hover {
            background-color: rgba(93, 64, 55, 0.05);
        }
        
        .faq-question h3 {
            font-size: 1.2rem;
            color: var(--primary-color);
            font-family: 'Playfair Display', 'Georgia', serif;
        }
        
        .faq-icon {
            font-size: 1.5rem;
            color: var(--gold-color);
            transition: transform 0.3s ease;
        }
        
        .faq-item.active .faq-icon {
            transform: rotate(45deg);
        }
        
        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease;
        }
        
        .faq-item.active .faq-answer {
            max-height: 500px;
        }
        
        .faq-answer p {
            padding: 0 20px 20px;
            color: var(--text-color);
        }
        
        /* Contact Section */
        .contact {
            padding: 100px 0;
            background-color: var(--background-color);
            position: relative;
        }
        
        .contact::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: linear-gradient(90deg, var(--primary-color), var(--secondary-color), var(--gold-color));
        }
        
        .contact-container {
            display: flex;
            flex-wrap: wrap;
            gap: 50px;
        }
        
        .contact-form {
            flex: 1;
            min-width: 300px;
            background-color: var(--card-bg);
            padding: 30px;
            border: 1px solid var(--border-color);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            position: relative;
        }
        
        .contact-form::before {
            content: "";
            position: absolute;
            top: -10px;
            left: -10px;
            right: -10px;
            bottom: -10px;
            border: 1px solid var(--gold-color);
            z-index: -1;
        }
        
        .contact-form h3 {
            font-size: 1.8rem;
            margin-bottom: 20px;
            color: var(--primary-color);
            position: relative;
            padding-left: 30px;
            font-family: 'Playfair Display', 'Georgia', serif;
        }
        
        .contact-form h3::before {
            content: '✉';
            position: absolute;
            left: 0;
            top: 0;
            color: var(--gold-color);
            font-size: 20px;
        }
        
        .form-group {
            margin-bottom: 20px;
        }
        
        .form-group label {
            display: block;
            margin-bottom: 8px;
            color: var(--primary-color);
            font-weight: 500;
        }
        
        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 12px;
            background-color: var(--background-color);
            border: 1px solid var(--border-color);
            border-radius: 0;
            color: var(--text-color);
            font-size: 1rem;
            transition: all 0.3s ease;
            font-family: 'Crimson Text', 'Georgia', serif;
        }
        
        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--gold-color);
            box-shadow: 0 0 0 2px rgba(212, 175, 55, 0.2);
        }
        
        .contact-info {
            flex: 1;
            min-width: 300px;
            background-color: var(--card-bg);
            padding: 30px;
            border: 1px solid var(--border-color);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            position: relative;
        }
        
        .contact-info::before {
            content: "";
            position: absolute;
            top: -10px;
            left: -10px;
            right: -10px;
            bottom: -10px;
            border: 1px solid var(--gold-color);
            z-index: -1;
        }
        
        .contact-info h3 {
            font-size: 1.8rem;
            margin-bottom: 20px;
            color: var(--primary-color);
            position: relative;
            padding-left: 30px;
            font-family: 'Playfair Display', 'Georgia', serif;
        }
        
        .contact-info h3::before {
            content: 'ℹ';
            position: absolute;
            left: 0;
            top: 0;
            color: var(--gold-color);
            font-size: 20px;
        }
        
        .contact-info p {
            margin-bottom: 15px;
            display: flex;
            align-items: center;
            color: var(--text-color);
        }
        
        .contact-info i {
            margin-right: 10px;
            color: var(--gold-color);
            font-size: 1.2rem;
            width: 20px;
            text-align: center;
        }
        
        /* Footer */
        footer {
            background-color: var(--primary-color);
            padding: 50px 0 20px;
            color: var(--accent-color);
            position: relative;
        }
        
        footer::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: linear-gradient(90deg, var(--gold-color), var(--secondary-color), var(--primary-color));
        }
        
        .footer-content {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            margin-bottom: 30px;
        }
        
        .footer-logo {
            flex: 1;
            min-width: 250px;
            margin-bottom: 20px;
        }
        
        .footer-logo h3 {
            font-size: 1.8rem;
            margin-bottom: 15px;
            color: var(--accent-color);
            display: flex;
            align-items: center;
            font-family: 'Playfair Display', 'Georgia', serif;
        }
        
        .footer-logo h3::before {
            content: '♛';
            display: inline-block;
            width: 24px;
            height: 24px;
            color: var(--gold-color);
            margin-right: 10px;
            font-size: 24px;
        }
        
        .footer-logo p {
            margin-bottom: 15px;
            opacity: 0.8;
        }
        
        .footer-links {
            flex: 1;
            min-width: 250px;
            margin-bottom: 20px;
        }
        
        .footer-links h4 {
            font-size: 1.2rem;
            margin-bottom: 15px;
            color: var(--accent-color);
            position: relative;
            padding-bottom: 10px;
            font-family: 'Playfair Display', 'Georgia', serif;
        }
        
        .footer-links h4::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: 0;
            width: 30px;
            height: 2px;
            background-color: var(--gold-color);
        }
        
        .footer-links ul {
            list-style: none;
        }
        
        .footer-links li {
            margin-bottom: 10px;
        }
        
        .footer-links a {
            color: var(--accent-color);
            text-decoration: none;
            transition: all 0.3s ease;
            display: inline-block;
        }
        
        .footer-links a:hover {
            color: var(--gold-color);
            transform: translateX(5px);
        }
        
        .footer-contact {
            flex: 1;
            min-width: 250px;
            margin-bottom: 20px;
        }
        
        .footer-contact h4 {
            font-size: 1.2rem;
            margin-bottom: 15px;
            color: var(--accent-color);
            position: relative;
            padding-bottom: 10px;
            font-family: 'Playfair Display', 'Georgia', serif;
        }
        
        .footer-contact h4::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: 0;
            width: 30px;
            height: 2px;
            background-color: var(--gold-color);
        }
        
        .footer-contact p {
            margin-bottom: 10px;
            display: flex;
            align-items: center;
            opacity: 0.8;
        }
        
        .footer-contact i {
            margin-right: 10px;
            color: var(--gold-color);
        }
        
        .footer-bottom {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            opacity: 0.7;
        }
        
        /* Disclaimer */
        .disclaimer {
            background-color: rgba(212, 175, 55, 0.1);
            padding: 20px;
            border-radius: 0;
            margin: 50px 0;
            text-align: center;
            border-left: 4px solid var(--gold-color);
            border-right: 4px solid var(--gold-color);
        }
        
        .disclaimer p {
            font-size: 0.9rem;
            color: var(--text-color);
        }
        
        /* Cookie Banner */
        .cookie-banner {
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            background-color: var(--primary-color);
            padding: 20px;
            box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
            z-index: 1000;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transform: translateY(100%);
            transition: transform 0.3s ease;
            color: var(--accent-color);
            border-top: 2px solid var(--gold-color);
        }
        
        .cookie-banner.active {
            transform: translateY(0);
        }
        
        .cookie-text {
            flex: 1;
            padding-right: 20px;
        }
        
        .cookie-text p {
            margin-bottom: 10px;
        }
        
        .cookie-buttons {
            display: flex;
            gap: 10px;
        }
        
        .cookie-buttons .btn {
            font-size: 0.9rem;
            padding: 8px 15px;
            background-color: var(--gold-color);
            border-color: var(--gold-color);
            color: var(--primary-color);
        }
        
        .cookie-buttons .btn-secondary {
            background-color: transparent;
            border-color: var(--accent-color);
            color: var(--accent-color);
        }
        
        /* Modal */
        .modal {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.8);
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 2000;
            opacity: 0;
            visibility: hidden;
            transition: opacity 0.3s ease, visibility 0.3s ease;
        }
        
        .modal.active {
            opacity: 1;
            visibility: visible;
        }
        
        .modal-content {
            background-color: var(--card-bg);
            padding: 30px;
            border-radius: 0;
            max-width: 500px;
            width: 90%;
            text-align: center;
            transform: scale(0.7);
            transition: transform 0.3s ease;
            position: relative;
            border: 1px solid var(--border-color);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
        }
        
        .modal-content::before {
            content: "";
            position: absolute;
            top: -10px;
            left: -10px;
            right: -10px;
            bottom: -10px;
            border: 1px solid var(--gold-color);
            z-index: -1;
        }
        
        .modal.active .modal-content {
            transform: scale(1);
        }
        
        .modal-content h3 {
            font-size: 1.8rem;
            margin-bottom: 20px;
            color: var(--primary-color);
            font-family: 'Playfair Display', 'Georgia', serif;
        }
        
        .modal-content p {
            margin-bottom: 20px;
            color: var(--text-color);
        }
        
        .modal-close {
            position: absolute;
            top: 15px;
            right: 15px;
            font-size: 1.5rem;
            cursor: pointer;
            color: var(--text-color);
            width: 30px;
            height: 30px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
        }
        
        .modal-close:hover {
            color: var(--gold-color);
            background-color: rgba(93, 64, 55, 0.1);
        }
        
        /* Responsive */
        @media (max-width: 768px) {
            .burger {
                display: flex;
            }
            
            nav ul {
                position: fixed;
                top: 70px;
                left: 0;
                width: 100%;
                background-color: var(--primary-color);
                flex-direction: column;
                align-items: center;
                padding: 20px 0;
                transform: translateY(-150%);
                transition: transform 0.3s ease;
                z-index: 999;
                box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
            }
            
            nav ul.active {
                transform: translateY(0);
            }
            
            nav ul li {
                margin: 15px 0;
            }
            
            .hero h1 {
                font-size: 2.5rem;
            }
            
            .hero p {
                font-size: 1rem;
            }
            
            .btn-secondary {
                margin-left: 0;
                margin-top: 15px;
            }
            
            .section-title h2 {
                font-size: 2rem;
            }
            
            .price-card.featured {
                transform: scale(1);
            }
            
            .price-card.featured:hover {
                transform: translateY(-10px);
            }
            
            .cookie-banner {
                flex-direction: column;
                text-align: center;
            }
            
            .cookie-text {
                padding-right: 0;
                margin-bottom: 15px;
            }
            
            .about-content,
            .contact-container {
                flex-direction: column;
            }
        }

