:root {
            --primary: #c10000;
            --secondary: #2c2c2c;
            --accent: #f0e6d2;
            --light: #f5f5f5;
            --dark: #1a1a1a;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial', sans-serif;
        }
        
        body {background-color: var(--light);
            color: var(--dark);
            line-height: 1.6;}
        
        main {
            max-width: 1000px;
            margin: 0 auto;
            padding: 40px;
            background-color: white;
            box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
            border-radius: 10px;
        }
        
        h1, h2, h3 {
            margin-bottom: 20px;
            color: var(--secondary);
        }
        
        h1 {
            font-size: 36px;
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 30px;
            padding-bottom: 15px;
            border-bottom: 4px solid var(--primary);
        }
        
        h2 {
            font-size: 28px;
            margin-top: 30px;
            padding-bottom: 10px;
            border-bottom: 2px solid var(--accent);
        }
        
        h3 {
            font-size: 22px;
            margin-top: 25px;
        }
        
        p {
            margin-bottom: 20px;
            font-size: 18px;
        }
        
        ul {
            margin-bottom: 20px;
            padding-left: 40px;
        }
        
        li {
            margin-bottom: 10px;
            font-size: 18px;
        }
        
        .last-updated {
            font-style: italic;
            color: #666;
            margin-bottom: 30px;
        }
        
        @media screen and (max-width: 768px) {
            main {
                padding: 20px;
            }
            
            h1 {
                font-size: 28px;
            }
            
            h2 {
                font-size: 24px;
            }
            
            h3 {
                font-size: 20px;
            }
            
            p, li {
                font-size: 16px;
            }
        }
:root {
            --primary: #c10000;
            --secondary: #2c2c2c;
            --accent: #f0e6d2;
            --light: #f5f5f5;
            --dark: #1a1a1a;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial', sans-serif;
        }
        
        body {background-color: var(--light);
            color: var(--dark);
            line-height: 1.6;
            padding-top: 80px;}
        
        .container {
            width: 100%;
            padding: 0 15px;
            margin: 0 auto;
        }
        
        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            background-color: var(--primary);
            color: var(--light);
            padding: 15px 0;
            z-index: 1000;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
        }
        
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        .logo {
            font-size: 24px;
            font-weight: bold;
            text-transform: uppercase;
            letter-spacing: 2px;
        }
        
        .nav-menu {
            display: flex;
            list-style: none;
        }
        
        .nav-menu li {
            margin-left: 30px;
        }
        
        .nav-menu a {
            color: var(--light);
            text-decoration: none;
            font-weight: bold;
            transition: color 0.3s;
        }
        
        .nav-menu a:hover {
            color: var(--accent);
        }
        
        .burger {
            display: none;
            cursor: pointer;
        }
        
        .burger div {
            width: 25px;
            height: 3px;
            background-color: var(--light);
            margin: 5px;
            transition: all 0.3s ease;
        }
        
        section {
            padding: 80px 0;
        }
        
        h1, h2, h3 {
            margin-bottom: 20px;
            color: var(--secondary);
        }
        
        h1 {
            font-size: 48px;
            text-transform: uppercase;
            letter-spacing: 2px;
        }
        
        h2 {
            font-size: 36px;
            text-transform: uppercase;
            position: relative;
            padding-bottom: 15px;
        }
        
        h2:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100px;
            height: 4px;
            background-color: var(--primary);
        }
        
        p {
            margin-bottom: 20px;
            font-size: 18px;
        }
        
        .btn {
            display: inline-block;
            background-color: var(--primary);
            color: var(--light);
            padding: 12px 30px;
            text-decoration: none;
            border: none;
            cursor: pointer;
            font-size: 18px;
            font-weight: bold;
            text-transform: uppercase;
            transition: background-color 0.3s;
            margin-top: 20px;
        }
        
        .btn:hover {
            background-color: var(--secondary);
        }
        
        /* Hero Section */
        .hero {
            background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('https://plus.unsplash.com/premium_photo-1730833395411-91d46c1e6ab7?q=80&w=687&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D') no-repeat center center/cover;
            color: var(--light);
            text-align: center;
            padding: 150px 0;
        }
        
        .hero h1 {
            color: var(--light);
            font-size: 56px;
            margin-bottom: 30px;
        }
        
        .hero p {
            font-size: 22px;
            max-width: 800px;
            margin: 0 auto 30px;
        }
        
        /* About Section */
        .about {
            background-color: var(--light);
        }
        
        .about-content {
            display: flex;
            align-items: center;
            flex-wrap: wrap;
        }
        
        .about-text {
            flex: 1;
            min-width: 300px;
            padding: 20px;
        }
        
        .about-image {
            flex: 1;
            min-width: 300px;
            padding: 20px;
        }
        
        .about-image img {
            width: 100%;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }
        
        /* Products Section */
        .products {
            background-color: var(--accent);
        }
        
        .product-cards {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-around;
            gap: 30px;
        }
        
        .product-card {
            background-color: var(--light);
            border-radius: 10px;
            overflow: hidden;
            width: 300px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s;
        }
        
        .product-card:hover {
            transform: translateY(-10px);
        }
        
        .product-image {
            width: 100%;
            height: 200px;
            object-fit: cover;
        }
        
        .product-info {
            padding: 20px;
        }
        
        .product-info h3 {
            font-size: 24px;
            margin-bottom: 10px;
        }
        
        /* Prices Section */
        .prices {
            background-color: var(--light);
            text-align: center;
        }
        
        .price-cards {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 30px;
        }
        
        .price-card {
            background-color: var(--accent);
            border-radius: 10px;
            padding: 30px;
            width: 300px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }
        
        .price-card h3 {
            font-size: 24px;
            color: var(--primary);
        }
        
        .price {
            font-size: 36px;
            font-weight: bold;
            margin: 20px 0;
            color: var(--secondary);
        }
        
        .price-old {
            text-decoration: line-through;
            color: #999;
            font-size: 24px;
        }
        
        /* Gallery Section */
        .gallery {
            background-color: var(--secondary);
            color: var(--light);
        }
        
        .gallery h2:after {
            background-color: var(--accent);
        }
        
        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 15px;
        }
        
        .gallery-item {
            height: 250px;
            overflow: hidden;
            border-radius: 10px;
        }
        
        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s;
        }
        
        .gallery-item img:hover {
            transform: scale(1.1);
        }
        
        /* Feedback Section */
        .feedback {
            background-color: var(--light);
        }
        
        .slider {
            position: relative;
            overflow: hidden;
            height: 300px;
        }
        
        .slide {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0;
            transition: opacity 0.5s ease;
            background-color: var(--accent);
            padding: 30px;
            border-radius: 10px;
        }
        
        .slide.active {
            opacity: 1;
        }
        
        .client-info {
            display: flex;
            align-items: center;
            margin-top: 20px;
        }
        
        .client-image {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            margin-right: 15px;
            object-fit: cover;
        }
        
        .slider-nav {
            text-align: center;
            margin-top: 20px;
        }
        
        .slider-dot {
            display: inline-block;
            width: 12px;
            height: 12px;
            background-color: #ccc;
            border-radius: 50%;
            margin: 0 5px;
            cursor: pointer;
        }
        
        .slider-dot.active {
            background-color: var(--primary);
        }
        
        /* FAQ Section */
        .faq {
            background-color: var(--accent);
        }
        
        .accordion {
            margin-top: 30px;
        }
        
        .accordion-item {
            margin-bottom: 15px;
            border-radius: 5px;
            overflow: hidden;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
        }
        
        .accordion-header {
            background-color: var(--primary);
            color: var(--light);
            padding: 15px;
            cursor: pointer;
            font-weight: bold;
            position: relative;
        }
        
        .accordion-header:after {
            content: '+';
            position: absolute;
            right: 15px;
            top: 50%;
            transform: translateY(-50%);
            font-size: 20px;
        }
        
        .accordion-header.active:after {
            content: '-';
        }
        
        .accordion-content {
            background-color: var(--light);
            padding: 0 15px;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease, padding 0.3s ease;
        }
        
        .accordion-content.active {
            max-height: 500px;
            padding: 15px;
        }
        
        /* Contact Section */
        .contact {
            background-color: var(--light);
        }
        
        .contact-form {
            max-width: 600px;
            margin: 0 auto;
        }
        
        .form-group {
            margin-bottom: 20px;
        }
        
        .form-group label {
            display: block;
            margin-bottom: 5px;
            font-weight: bold;
        }
        
        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 12px;
            border: 1px solid #ddd;
            border-radius: 5px;
            font-size: 16px;
        }
        
        .form-group textarea {
            min-height: 150px;
        }
        
        /* Modal */
        .modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.7);
            z-index: 2000;
            justify-content: center;
            align-items: center;
        }
        
        .modal-content {
            background-color: var(--light);
            padding: 30px;
            border-radius: 10px;
            text-align: center;
            max-width: 500px;
            width: 90%;
        }
        
        .modal-close {
            position: absolute;
            top: 10px;
            right: 10px;
            font-size: 24px;
            cursor: pointer;
            color: var(--dark);
        }
        
        /* Disclaimer */
        .disclaimer {
            background-color: var(--secondary);
            color: var(--light);
            padding: 20px;
            font-size: 14px;
            text-align: center;
        }
        
        /* Cookie Banner */
        .cookie-banner {
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            background-color: var(--secondary);
            color: var(--light);
            padding: 15px;
            text-align: center;
            z-index: 1000;
            display: none;
        }
        
        .cookie-banner p {
            margin-bottom: 15px;
        }
        
        .cookie-btn {
            background-color: var(--primary);
            color: var(--light);
            border: none;
            padding: 8px 20px;
            cursor: pointer;
            margin: 0 10px;
        }
        
        /* Footer */
        footer {
            background-color: var(--dark);
            color: var(--light);
            padding: 50px 0 20px;
        }
        
        .footer-content {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        .footer-section {
            flex: 1;
            min-width: 250px;
            margin-bottom: 30px;
            padding: 0 15px;
        }
        
        .footer-section h3 {
            color: var(--accent);
            margin-bottom: 20px;
            font-size: 20px;
        }
        
        .footer-links {
            list-style: none;
        }
        
        .footer-links li {
            margin-bottom: 10px;
        }
        
        .footer-links a {
            color: var(--light);
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .footer-links a:hover {
            color: var(--accent);
        }
        
        .footer-bottom {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid #444;
            margin-top: 30px;
        }
        
        /* Responsive */
        @media screen and (max-width: 768px) {
            .nav-menu {
                position: absolute;
                right: 0;
                top: 80px;
                background-color: var(--primary);
                width: 100%;
                flex-direction: column;
                align-items: center;
                padding: 20px 0;
                transform: translateY(-100%);
                transition: transform 0.5s ease;
                z-index: -1;
            }
            
            .nav-menu.active {
                transform: translateY(0);
            }
            
            .nav-menu li {
                margin: 15px 0;
            }
            
            .burger {
                display: block;
            }
            
            .burger.toggle .line1 {
                transform: rotate(-45deg) translate(-5px, 6px);
            }
            
            .burger.toggle .line2 {
                opacity: 0;
            }
            
            .burger.toggle .line3 {
                transform: rotate(45deg) translate(-5px, -6px);
            }
            
            h1 {
                font-size: 36px;
            }
            
            h2 {
                font-size: 28px;
            }
            
            .hero {
                padding: 100px 0;
            }
            
            .hero h1 {
                font-size: 40px;
            }
            
            .hero p {
                font-size: 18px;
            }
        }

