:root {
            --primary-red: #CC0000;
            --primary-black: #000000;
            --primary-white: #FFFFFF;
            --accent-gray: #333333;
            --light-gray: #F5F5F5;
            --dark-red: #990000;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial', sans-serif;
        }
        
        body {
            background-color: var(--primary-white);
            color: var(--primary-black);
            line-height: 1.6;
            overflow-x: hidden;
        }
        
        .container {
            width: 100%;
            padding: 0 15px;
            margin: 0 auto;
        }
        
        /* Header Styles */
        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            background-color: var(--primary-red);
            color: var(--primary-white);
            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(--primary-white);
            text-decoration: none;
            font-weight: bold;
            text-transform: uppercase;
            font-size: 14px;
            letter-spacing: 1px;
            transition: all 0.3s ease;
        }
        
        .nav-menu a:hover {
            color: var(--primary-black);
        }
        
        .burger {
            display: none;
            cursor: pointer;
        }
        
        .burger div {
            width: 25px;
            height: 3px;
            background-color: var(--primary-white);
            margin: 5px;
            transition: all 0.3s ease;
        }
        
        /* Hero Section */
        .hero {
            height: 100vh;
            background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://images.unsplash.com/photo-1554224155-1696413565d3?q=80&w=1170&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D') no-repeat center center/cover;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: var(--primary-white);
            padding-top: 80px;
        }
        
        .hero-content {
            max-width: 800px;
            padding: 0 20px;
        }
        
        .hero h1 {
            font-size: 48px;
            margin-bottom: 20px;
            text-transform: uppercase;
            letter-spacing: 3px;
        }
        
        .hero p {
            font-size: 20px;
            margin-bottom: 30px;
        }
        
        .btn {
            display: inline-block;
            background-color: var(--primary-red);
            color: var(--primary-white);
            padding: 12px 30px;
            text-decoration: none;
            text-transform: uppercase;
            font-weight: bold;
            border: none;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .btn:hover {
            background-color: var(--dark-red);
            transform: translateY(-3px);
        }
        
        /* Sections Common Styles */
        section {
            padding: 80px 0;
        }
        
        section h2 {
            text-align: center;
            font-size: 36px;
            margin-bottom: 50px;
            text-transform: uppercase;
            position: relative;
            color: var(--primary-red);
        }
        
        section h2::after {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 4px;
            background-color: var(--primary-red);
        }
        
        /* About Section */
        .about {
            background-color: var(--light-gray);
        }
        
        .about-content {
            max-width: 1000px;
            margin: 0 auto;
            text-align: center;
        }
        
        .about-content p {
            margin-bottom: 20px;
            font-size: 18px;
        }
        
        /* Products Section */
        .products-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .product-card {
            background-color: var(--light-gray);
            padding: 30px;
            border-left: 5px solid var(--primary-red);
            transition: all 0.3s ease;
        }
        
        .product-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        }
        
        .product-card h3 {
            font-size: 24px;
            margin-bottom: 15px;
            color: var(--primary-red);
        }
        
        /* Prices Section */
        .prices {
            background-color: var(--light-gray);
        }
        
        .prices-container {
            max-width: 1000px;
            margin: 0 auto;
        }
        
        .price-table {
            width: 100%;
            border-collapse: collapse;
            margin-top: 30px;
        }
        
        .price-table th, .price-table td {
            padding: 15px;
            text-align: left;
            border-bottom: 1px solid #ddd;
        }
        
        .price-table th {
            background-color: var(--primary-red);
            color: var(--primary-white);
        }
        
        .price-table tr:nth-child(even) {
            background-color: #f2f2f2;
        }
        
        .discount-banner {
            background-color: var(--primary-red);
            color: var(--primary-white);
            padding: 20px;
            text-align: center;
            margin-top: 40px;
        }
        
        /* Gallery Section */
        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 15px;
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .gallery-item {
            height: 250px;
            overflow: hidden;
            position: relative;
        }
        
        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .gallery-item:hover img {
            transform: scale(1.1);
        }
        
        /* Feedback Section */
        .feedback-slider {
            max-width: 800px;
            margin: 0 auto;
            position: relative;
            overflow: hidden;
        }
        
        .feedback-slide {
            background-color: var(--light-gray);
            padding: 30px;
            text-align: center;
            display: none;
        }
        
        .feedback-slide.active {
            display: block;
            animation: fadeIn 1s;
        }
        
        .client-image {
            width: 100px;
            height: 100px;
            border-radius: 50%;
            object-fit: cover;
            margin: 0 auto 20px;
            border: 3px solid var(--primary-red);
        }
        
        .client-name {
            font-weight: bold;
            margin-top: 15px;
            color: var(--primary-red);
        }
        
        .slider-controls {
            text-align: center;
            margin-top: 30px;
        }
        
        .slider-dot {
            display: inline-block;
            width: 12px;
            height: 12px;
            background-color: #bbb;
            border-radius: 50%;
            margin: 0 5px;
            cursor: pointer;
        }
        
        .slider-dot.active {
            background-color: var(--primary-red);
        }
        
        /* FAQ Section */
        .faq {
            background-color: var(--light-gray);
        }
        
        .faq-container {
            max-width: 800px;
            margin: 0 auto;
        }
        
        .faq-item {
            margin-bottom: 20px;
            border-bottom: 1px solid #ddd;
        }
        
        .faq-question {
            font-size: 20px;
            font-weight: bold;
            padding: 15px 0;
            cursor: pointer;
            position: relative;
            padding-right: 30px;
        }
        
        .faq-question::after {
            content: '+';
            position: absolute;
            right: 0;
            top: 50%;
            transform: translateY(-50%);
            font-size: 24px;
        }
        
        .faq-question.active::after {
            content: '-';
        }
        
        .faq-answer {
            padding: 0 0 20px;
            display: none;
        }
        
        /* Contact Section */
        .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;
            font-size: 16px;
        }
        
        .form-group textarea {
            height: 150px;
            resize: vertical;
        }
        
        /* Disclaimer */
        .disclaimer {
            background-color: var(--primary-black);
            color: var(--primary-white);
            padding: 20px;
            font-size: 14px;
            text-align: center;
        }
        
        /* Cookie Banner */
        .cookie-banner {
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            background-color: var(--primary-black);
            color: var(--primary-white);
            padding: 15px;
            text-align: center;
            z-index: 1000;
            display: none;
        }
        
        .cookie-banner p {
            margin-bottom: 15px;
        }
        
        /* Footer */
        footer {
            background-color: var(--primary-black);
            color: var(--primary-white);
            padding: 50px 0 20px;
        }
        
        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            padding: 0 20px;
        }
        
        .footer-links h3,
        .footer-contact h3 {
            font-size: 20px;
            margin-bottom: 20px;
            text-transform: uppercase;
        }
        
        .footer-links ul {
            list-style: none;
        }
        
        .footer-links li {
            margin-bottom: 10px;
        }
        
        .footer-links a {
            color: var(--primary-white);
            text-decoration: none;
            transition: color 0.3s ease;
        }
        
        .footer-links a:hover {
            color: var(--primary-red);
        }
        
        .footer-contact address {
            font-style: normal;
            line-height: 1.8;
        }
        
        .copyright {
            text-align: center;
            margin-top: 40px;
            padding-top: 20px;
            border-top: 1px solid #444;
            font-size: 14px;
        }
        
        /* 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(--primary-white);
            padding: 30px;
            text-align: center;
            max-width: 500px;
            width: 100%;
            border-top: 5px solid var(--primary-red);
        }
        
        .modal-content h3 {
            font-size: 24px;
            margin-bottom: 15px;
            color: var(--primary-red);
        }
        
        .close-modal {
            margin-top: 20px;
        }
        
        /* Animations */
        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }
        
        /* Responsive Styles */
        @media screen and (max-width: 768px) {
            .nav-menu {
                position: absolute;
                right: 0;
                top: 70px;
                background-color: var(--primary-red);
                width: 100%;
                flex-direction: column;
                align-items: center;
                padding: 20px 0;
                transform: translateY(-150%);
                transition: transform 0.5s ease-in;
                z-index: 100;
            }
            
            .nav-menu.active {
                transform: translateY(0);
            }
            
            .nav-menu li {
                margin: 15px 0;
            }
            
            .burger {
                display: block;
            }
            
            .hero h1 {
                font-size: 36px;
            }
            
            .hero p {
                font-size: 18px;
            }
            
            section h2 {
                font-size: 30px;
            }
            
            .gallery-grid {
                grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            }
        }
        
        @media screen and (max-width: 480px) {
            .hero h1 {
                font-size: 28px;
            }
            
            section {
                padding: 60px 0;
            }
            
            section h2 {
                font-size: 26px;
            }
            
            .product-card {
                padding: 20px;
            }
        }

