:root {
            --red: #CC0000;
            --black: #000000;
            --white: #FFFFFF;
            --yellow: #FFD700;
            --gray: #333333;
            --light-gray: #F5F5F5;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial', sans-serif;
        }
        
        body {color: var(--black);
            background-color: var(--white);
            line-height: 1.6;}
        
        main {
            max-width: 1000px;
            margin: 0 auto;
            padding: 20px;
            background-color: var(--white);
            box-shadow: 0 0 15px rgba(0,0,0,0.1);
            border-radius: 5px;
        }
        
        h1 {
            color: var(--red);
            text-align: center;
            margin-bottom: 30px;
            text-transform: uppercase;
        }
        
        h2 {
            color: var(--red);
            margin: 25px 0 15px;
            padding-bottom: 5px;
            border-bottom: 2px solid var(--yellow);
        }
        
        p, ul {
            margin-bottom: 15px;
        }
        
        ul {
            padding-left: 20px;
        }
        
        li {
            margin-bottom: 8px;
        }
        
        .last-updated {
            text-align: right;
            font-style: italic;
            color: var(--gray);
            margin-bottom: 30px;
        }
:root {
            --red: #CC0000;
            --black: #000000;
            --white: #FFFFFF;
            --yellow: #FFD700;
            --gray: #333333;
            --light-gray: #F5F5F5;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial', sans-serif;
        }
        
        body {color: var(--black);
            background-color: var(--white);
            line-height: 1.6;
            padding-top: 80px;}
        
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }
        
        /* Header */
        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            background-color: var(--red);
            color: var(--white);
            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;
            padding: 15px 20px;
        }
        
        .logo {
            font-weight: bold;
            font-size: 24px;
            color: var(--yellow);
            text-transform: uppercase;
        }
        
        .nav-menu {
            display: flex;
            list-style: none;
        }
        
        .nav-menu li {
            margin-left: 25px;
        }
        
        .nav-menu a {
            color: var(--white);
            text-decoration: none;
            text-transform: uppercase;
            font-weight: bold;
            transition: color 0.3s;
        }
        
        .nav-menu a:hover {
            color: var(--yellow);
        }
        
        .burger {
            display: none;
            cursor: pointer;
        }
        
        .burger div {
            width: 25px;
            height: 3px;
            background-color: var(--white);
            margin: 5px;
            transition: all 0.3s ease;
        }
        
        /* Hero Section */
        .hero {
            background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('https://images.unsplash.com/photo-1626759292870-5813c8c647c9?q=80&w=1170&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D');
            background-size: cover;
            background-position: center;
            height: 80vh;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: var(--white);
            padding: 0 20px;
        }
        
        .hero-content {
            max-width: 800px;
        }
        
        .hero h1 {
            font-size: 3rem;
            margin-bottom: 20px;
            text-transform: uppercase;
            color: var(--yellow);
        }
        
        .hero p {
            font-size: 1.2rem;
            margin-bottom: 30px;
        }
        
        .btn {
            display: inline-block;
            background-color: var(--red);
            color: var(--white);
            padding: 12px 30px;
            text-decoration: none;
            border-radius: 4px;
            text-transform: uppercase;
            font-weight: bold;
            transition: background-color 0.3s;
        }
        
        .btn:hover {
            background-color: var(--yellow);
            color: var(--black);
        }
        
        /* Sections */
        section {
            padding: 80px 0;
        }
        
        section:nth-child(even) {
            background-color: var(--light-gray);
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 50px;
            text-transform: uppercase;
            color: var(--red);
            position: relative;
        }
        
        .section-title:after {
            content: '';
            display: block;
            width: 100px;
            height: 3px;
            background-color: var(--red);
            margin: 15px auto;
        }
        
        /* About */
        .about-content {
            display: flex;
            align-items: center;
            flex-wrap: wrap;
        }
        
        .about-text {
            flex: 1;
            min-width: 300px;
            padding-right: 30px;
        }
        
        .about-image {
            flex: 1;
            min-width: 300px;
        }
        
        .about-image img {
            width: 100%;
            border-radius: 5px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        
        /* Products */
        .product-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }
        
        .product-card {
            background-color: var(--white);
            border-radius: 5px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            transition: transform 0.3s;
        }
        
        .product-card:hover {
            transform: translateY(-10px);
        }
        
        .product-image {
            height: 200px;
            overflow: hidden;
        }
        
        .product-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s;
        }
        
        .product-card:hover .product-image img {
            transform: scale(1.1);
        }
        
        .product-info {
            padding: 20px;
        }
        
        .product-info h3 {
            color: var(--red);
            margin-bottom: 10px;
        }
        
        /* Prices */
        .pricing-container {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 30px;
        }
        
        .pricing-card {
            background-color: var(--white);
            border-radius: 5px;
            padding: 30px;
            text-align: center;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            flex: 1;
            min-width: 250px;
            max-width: 350px;
        }
        
        .price {
            font-size: 2.5rem;
            color: var(--red);
            margin: 20px 0;
        }
        
        .price span {
            font-size: 1rem;
            color: var(--gray);
        }
        
        .discount {
            background-color: var(--yellow);
            color: var(--black);
            padding: 5px 10px;
            border-radius: 3px;
            display: inline-block;
            margin-bottom: 15px;
            font-weight: bold;
        }
        
        /* Gallery */
        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 15px;
        }
        
        .gallery-item {
            height: 250px;
            overflow: hidden;
            border-radius: 5px;
            position: relative;
        }
        
        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s;
        }
        
        .gallery-item:hover img {
            transform: scale(1.1);
        }
        
        /* Feedback */
        .feedback-slider {
            position: relative;
            overflow: hidden;
            padding: 20px 0;
        }
        
        .feedback-container {
            display: flex;
            transition: transform 0.5s ease;
        }
        
        .feedback-item {
            min-width: 100%;
            padding: 20px;
            background-color: var(--white);
            border-radius: 5px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            margin: 0 15px;
        }
        
        .feedback-text {
            font-style: italic;
            margin-bottom: 20px;
        }
        
        .feedback-author {
            display: flex;
            align-items: center;
        }
        
        .author-avatar {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            overflow: hidden;
            margin-right: 15px;
        }
        
        .author-avatar img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .slider-controls {
            display: flex;
            justify-content: center;
            margin-top: 30px;
        }
        
        .slider-btn {
            background-color: var(--red);
            color: var(--white);
            border: none;
            padding: 10px 15px;
            margin: 0 5px;
            cursor: pointer;
            border-radius: 3px;
            transition: background-color 0.3s;
        }
        
        .slider-btn:hover {
            background-color: var(--yellow);
            color: var(--black);
        }
        
        /* FAQ */
        .faq-container {
            max-width: 800px;
            margin: 0 auto;
        }
        
        .faq-item {
            margin-bottom: 20px;
            border-bottom: 1px solid #ddd;
        }
        
        .faq-question {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
            cursor: pointer;
            font-weight: bold;
        }
        
        .faq-answer {
            padding: 0 0 15px;
            display: none;
        }
        
        .faq-active .faq-answer {
            display: block;
        }
        
        /* Contact */
        .contact-form {
            max-width: 600px;
            margin: 0 auto;
            background-color: var(--white);
            padding: 30px;
            border-radius: 5px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        
        .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: 10px;
            border: 1px solid #ddd;
            border-radius: 4px;
        }
        
        /* 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;
            align-items: center;
            justify-content: center;
        }
        
        .modal-content {
            background-color: var(--white);
            padding: 30px;
            border-radius: 5px;
            text-align: center;
            max-width: 500px;
            width: 100%;
        }
        
        .modal-close {
            background-color: var(--red);
            color: var(--white);
            border: none;
            padding: 10px 20px;
            border-radius: 4px;
            cursor: pointer;
            margin-top: 20px;
        }
        
        /* Disclaimer */
        .disclaimer {
            background-color: var(--black);
            color: var(--white);
            padding: 20px;
            text-align: center;
            font-size: 0.9rem;
        }
        
        /* Cookie Banner */
        .cookie-banner {
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            background-color: var(--gray);
            color: var(--white);
            padding: 15px;
            text-align: center;
            z-index: 1000;
            display: none;
        }
        
        .cookie-banner p {
            margin-bottom: 15px;
        }
        
        .cookie-btn {
            background-color: var(--red);
            color: var(--white);
            border: none;
            padding: 8px 15px;
            margin: 0 5px;
            cursor: pointer;
            border-radius: 3px;
        }
        
        /* Footer */
        footer {
            background-color: var(--black);
            color: var(--white);
            padding: 50px 0 20px;
        }
        
        .footer-container {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
        }
        
        .footer-col {
            flex: 1;
            min-width: 200px;
            margin-bottom: 30px;
        }
        
        .footer-col h3 {
            color: var(--yellow);
            margin-bottom: 20px;
            text-transform: uppercase;
        }
        
        .footer-col ul {
            list-style: none;
        }
        
        .footer-col ul li {
            margin-bottom: 10px;
        }
        
        .footer-col a {
            color: var(--white);
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .footer-col a:hover {
            color: var(--yellow);
        }
        
        .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: fixed;
                top: 80px;
                right: -100%;
                height: calc(100vh - 80px);
                width: 100%;
                flex-direction: column;
                background-color: var(--red);
                text-align: center;
                transition: right 0.5s ease;
                padding-top: 50px;
            }
            
            .nav-menu.active {
                right: 0;
            }
            
            .nav-menu li {
                margin: 15px 0;
            }
            
            .burger {
                display: block;
            }
            
            .burger.active div:nth-child(1) {
                transform: rotate(45deg) translate(5px, 8px);
            }
            
            .burger.active div:nth-child(2) {
                opacity: 0;
            }
            
            .burger.active div:nth-child(3) {
                transform: rotate(-45deg) translate(5px, -8px);
            }
            
            .hero h1 {
                font-size: 2rem;
            }
            
            .about-text, .about-image {
                flex: 100%;
                padding-right: 0;
            }
            
            .about-image {
                margin-top: 30px;
            }
        }

