* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial Narrow', Arial, sans-serif;
        }
        
        body {
            background-color: #f5f5f5;
            color: #333;
            line-height: 1.6;
            overflow-x: hidden;
        }
        
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            background: linear-gradient(90deg, #c62828 0%, #b71c1c 100%);
            padding: 15px 0;
            z-index: 1000;
            box-shadow: 0 4px 20px rgba(0,0,0,0.3);
        }
        
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .logo {
            font-size: 24px;
            font-weight: bold;
            color: #fff;
            text-decoration: none;
            letter-spacing: 2px;
            text-transform: uppercase;
        }
        
        .nav-menu {
            display: flex;
            list-style: none;
        }
        
        .nav-menu li {
            margin-left: 30px;
        }
        
        .nav-menu a {
            color: #fff;
            text-decoration: none;
            font-size: 16px;
            font-weight: bold;
            text-transform: uppercase;
            transition: all 0.3s ease;
            position: relative;
        }
        
        .nav-menu a:hover {
            color: #ffeb3b;
        }
        
        .nav-menu a::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: -5px;
            left: 0;
            background-color: #ffeb3b;
            transition: width 0.3s ease;
        }
        
        .nav-menu a:hover::after {
            width: 100%;
        }
        
        .burger {
            display: none;
            cursor: pointer;
        }
        
        .burger div {
            width: 25px;
            height: 3px;
            background-color: #fff;
            margin: 5px 0;
            transition: all 0.3s ease;
        }
        
        .hero {
            height: 100vh;
            background: linear-gradient(rgba(198, 40, 40, 0.8), rgba(183, 28, 28, 0.8)), url('../img/06.webp');
            background-size: cover;
            background-position: center;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        
        .hero-content {
            position: relative;
            z-index: 2;
            max-width: 800px;
            padding: 0 20px;
        }
        
        .hero h1 {
            font-size: 3.5rem;
            margin-bottom: 20px;
            color: #fff;
            text-transform: uppercase;
            letter-spacing: 3px;
            font-weight: bold;
        }
        
        .hero p {
            font-size: 1.2rem;
            margin-bottom: 30px;
            color: #f5f5f5;
            font-weight: bold;
        }
        
        .btn {
            display: inline-block;
            padding: 15px 40px;
            background-color: #ffeb3b;
            color: #b71c1c;
            text-decoration: none;
            font-weight: bold;
            text-transform: uppercase;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
            z-index: 1;
            letter-spacing: 1px;
        }
        
        .btn:hover {
            background-color: #fdd835;
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(0,0,0,0.3);
        }
        
        .about {
            padding: 100px 0;
            background-color: #f5f5f5;
        }
        
        .section-title {
            font-size: 2.5rem;
            text-align: center;
            margin-bottom: 50px;
            color: #c62828;
            position: relative;
            display: inline-block;
            width: 100%;
            text-transform: uppercase;
            font-weight: bold;
        }
        
        .section-title::after {
            content: '';
            position: absolute;
            width: 100px;
            height: 4px;
            background-color: #c62828;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
        }
        
        .about-content {
            display: flex;
            align-items: center;
            gap: 50px;
        }
        
        .about-text {
            flex: 1;
        }
        
        .about-text p {
            margin-bottom: 20px;
            color: #333;
            font-size: 1.1rem;
        }
        
        .about-image {
            flex: 1;
            position: relative;
            overflow: hidden;
            border: 5px solid #c62828;
            box-shadow: 0 10px 30px rgba(0,0,0,0.3);
        }
        
        .about-image img {
            width: 100%;
            height: auto;
            display: block;
            transition: transform 0.5s ease;
        }
        
        .about-image:hover img {
            transform: scale(1.05);
        }
        
        .products {
            padding: 100px 0;
            background-color: #e0e0e0;
        }
        
        .products-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }
        
        .product-card {
            background-color: #fff;
            border: 3px solid #c62828;
            padding: 30px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.2);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }
        
        .product-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background-color: #c62828;
        }
        
        .product-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0,0,0,0.3);
        }
        
        .product-card h3 {
            font-size: 1.5rem;
            margin-bottom: 15px;
            color: #c62828;
            text-transform: uppercase;
            font-weight: bold;
        }
        
        .product-card p {
            color: #333;
            margin-bottom: 20px;
        }
        
        .product-card .btn {
            background-color: #c62828;
            color: #fff;
        }
        
        .product-card .btn:hover {
            background-color: #b71c1c;
        }
        
        .prices {
            padding: 100px 0;
            background-color: #f5f5f5;
        }
        
        .prices-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }
        
        .price-card {
            background-color: #fff;
            border: 3px solid #c62828;
            padding: 30px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.2);
            transition: all 0.3s ease;
            position: relative;
            text-align: center;
        }
        
        .price-card.featured {
            transform: scale(1.05);
            box-shadow: 0 15px 40px rgba(0,0,0,0.3);
            border: 5px solid #ffeb3b;
        }
        
        .price-card h3 {
            font-size: 1.8rem;
            margin-bottom: 15px;
            color: #c62828;
            text-transform: uppercase;
            font-weight: bold;
        }
        
        .price {
            font-size: 2.5rem;
            font-weight: bold;
            color: #c62828;
            margin-bottom: 20px;
        }
        
        .price-card ul {
            list-style: none;
            margin-bottom: 30px;
            text-align: left;
        }
        
        .price-card li {
            padding: 10px 0;
            color: #333;
            border-bottom: 1px solid #e0e0e0;
            font-weight: bold;
        }
        
        .price-card li:last-child {
            border-bottom: none;
        }
        
        .price-card li::before {
            content: '✓';
            color: #c62828;
            font-weight: bold;
            margin-right: 10px;
        }
        
        .gallery {
            padding: 100px 0;
            background-color: #e0e0e0;
        }
        
        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
        }
        
        .gallery-item {
            position: relative;
            overflow: hidden;
            border: 3px solid #c62828;
            height: 250px;
            cursor: pointer;
            box-shadow: 0 10px 30px rgba(0,0,0,0.2);
        }
        
        .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(rgba(198, 40, 40, 0.7), rgba(183, 28, 28, 0.7));
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: opacity 0.3s ease;
        }
        
        .gallery-item:hover .gallery-overlay {
            opacity: 1;
        }
        
        .feedback {
            padding: 100px 0;
            background-color: #f5f5f5;
        }
        
        .feedback-slider {
            position: relative;
            max-width: 800px;
            margin: 0 auto;
            overflow: hidden;
        }
        
        .feedback-container {
            display: flex;
            transition: transform 0.5s ease;
        }
        
        .feedback-item {
            min-width: 100%;
            padding: 30px;
            background-color: #fff;
            border: 3px solid #c62828;
            box-shadow: 0 10px 30px rgba(0,0,0,0.2);
        }
        
        .feedback-text {
            font-style: italic;
            margin-bottom: 20px;
            color: #333;
            font-size: 1.1rem;
            line-height: 1.8;
            font-weight: bold;
        }
        
        .feedback-author {
            display: flex;
            align-items: center;
        }
        
        .author-avatar {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            margin-right: 15px;
            object-fit: cover;
            border: 2px solid #c62828;
        }
        
        .author-info h4 {
            color: #c62828;
            margin-bottom: 5px;
            font-weight: bold;
        }
        
        .author-info p {
            color: #666;
            font-size: 0.9rem;
        }
        
        .slider-controls {
            display: flex;
            justify-content: center;
            margin-top: 30px;
            gap: 15px;
        }
        
        .slider-btn {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background-color: #c62828;
            border: none;
            color: #fff;
            font-size: 18px;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
        }
        
        .slider-btn:hover {
            background-color: #b71c1c;
            transform: scale(1.1);
        }
        
        .faq {
            padding: 100px 0;
            background-color: #e0e0e0;
        }
        
        .faq-container {
            max-width: 800px;
            margin: 0 auto;
        }
        
        .faq-item {
            margin-bottom: 20px;
            border-radius: 5px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        
        .faq-question {
            background-color: #c62828;
            padding: 20px;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: all 0.3s ease;
        }
        
        .faq-question:hover {
            background-color: #b71c1c;
        }
        
        .faq-question h3 {
            color: #fff;
            font-size: 1.2rem;
            font-weight: bold;
            text-transform: uppercase;
        }
        
        .faq-icon {
            color: #fff;
            font-size: 1.5rem;
            transition: transform 0.3s ease;
        }
        
        .faq-answer {
            background-color: #fff;
            padding: 0 20px;
            max-height: 0;
            overflow: hidden;
            transition: all 0.3s ease;
        }
        
        .faq-answer p {
            color: #333;
            padding: 20px 0;
            font-weight: bold;
        }
        
        .faq-item.active .faq-icon {
            transform: rotate(45deg);
        }
        
        .faq-item.active .faq-answer {
            max-height: 300px;
        }
        
        .contact {
            padding: 100px 0;
            background-color: #f5f5f5;
        }
        
        .contact-form {
            max-width: 600px;
            margin: 0 auto;
            background-color: #fff;
            padding: 40px;
            border: 3px solid #c62828;
            box-shadow: 0 10px 30px rgba(0,0,0,0.2);
        }
        
        .form-group {
            margin-bottom: 20px;
        }
        
        .form-group label {
            display: block;
            margin-bottom: 8px;
            color: #c62828;
            font-weight: bold;
            text-transform: uppercase;
        }
        
        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 12px;
            background-color: #f5f5f5;
            border: 2px solid #c62828;
            color: #333;
            font-size: 16px;
            font-weight: bold;
            transition: all 0.3s ease;
        }
        
        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: #ffeb3b;
            background-color: #fff;
        }
        
        .form-btn {
            display: block;
            width: 100%;
            padding: 15px;
            background-color: #c62828;
            color: #fff;
            border: none;
            font-size: 18px;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s ease;
            text-transform: uppercase;
        }
        
        .form-btn:hover {
            background-color: #b71c1c;
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(0,0,0,0.3);
        }
        
        .modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0,0,0,0.7);
            z-index: 2000;
            align-items: center;
            justify-content: center;
        }
        
        .modal-content {
            background-color: #fff;
            padding: 40px;
            border: 3px solid #c62828;
            text-align: center;
            max-width: 500px;
            width: 90%;
            box-shadow: 0 10px 30px rgba(0,0,0,0.3);
            position: relative;
        }
        
        .modal-close {
            position: absolute;
            top: 15px;
            right: 15px;
            font-size: 24px;
            color: #c62828;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .modal-close:hover {
            transform: rotate(90deg);
        }
        
        .modal h3 {
            color: #c62828;
            margin-bottom: 20px;
            font-size: 1.8rem;
            text-transform: uppercase;
            font-weight: bold;
        }
        
        .modal p {
            color: #333;
            margin-bottom: 30px;
            font-weight: bold;
        }
        
        .cookie-banner {
            position: fixed;
            bottom: 20px;
            left: 20px;
            right: 20px;
            background-color: #c62828;
            padding: 20px;
            border-radius: 5px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.3);
            display: flex;
            justify-content: space-between;
            align-items: center;
            z-index: 1000;
            transform: translateY(150%);
            transition: transform 0.5s ease;
        }
        
        .cookie-banner.show {
            transform: translateY(0);
        }
        
        .cookie-text {
            flex: 1;
            color: #fff;
            margin-right: 20px;
            font-weight: bold;
        }
        
        .cookie-text a {
            color: #ffeb3b;
            text-decoration: none;
        }
        
        .cookie-btn {
            padding: 10px 20px;
            background-color: #ffeb3b;
            color: #c62828;
            border: none;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s ease;
            text-transform: uppercase;
        }
        
        .cookie-btn:hover {
            background-color: #fdd835;
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(0,0,0,0.3);
        }
        
        .disclaimer {
            background-color: #c62828;
            padding: 20px;
            text-align: center;
            color: #fff;
            font-size: 0.9rem;
            font-weight: bold;
        }
        
        footer {
            background-color: #333;
            padding: 50px 0 20px;
        }
        
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-bottom: 30px;
        }
        
        .footer-column h3 {
            color: #ffeb3b;
            margin-bottom: 20px;
            font-size: 1.3rem;
            text-transform: uppercase;
            font-weight: bold;
        }
        
        .footer-column ul {
            list-style: none;
        }
        
        .footer-column ul li {
            margin-bottom: 10px;
        }
        
        .footer-column ul li a {
            color: #fff;
            text-decoration: none;
            transition: all 0.3s ease;
            font-weight: bold;
        }
        
        .footer-column ul li a:hover {
            color: #ffeb3b;
            padding-left: 5px;
        }
        
        .footer-contact p {
            color: #fff;
            margin-bottom: 10px;
            font-weight: bold;
        }
        
        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid #555;
            color: #fff;
            font-size: 0.9rem;
        }
        
        @media (max-width: 992px) {
            .hero h1 {
                font-size: 2.8rem;
            }
            
            .about-content {
                flex-direction: column;
            }
        }
        
        @media (max-width: 768px) {
            .nav-menu {
                position: fixed;
                top: 70px;
                left: -100%;
                width: 100%;
                height: calc(100vh - 70px);
                background-color: #c62828;
                flex-direction: column;
                align-items: center;
                justify-content: flex-start;
                padding-top: 50px;
                transition: left 0.5s ease;
            }
            
            .nav-menu.active {
                left: 0;
            }
            
            .nav-menu li {
                margin: 15px 0;
            }
            
            .burger {
                display: block;
            }
            
            .hero h1 {
                font-size: 2.2rem;
            }
            
            .section-title {
                font-size: 2rem;
            }
            
            .price-card.featured {
                transform: scale(1);
            }
            
            .cookie-banner {
                flex-direction: column;
                align-items: flex-start;
            }
            
            .cookie-text {
                margin-right: 0;
                margin-bottom: 15px;
            }
        }
        
        @media (max-width: 576px) {
            .hero h1 {
                font-size: 1.8rem;
            }
            
            .section-title {
                font-size: 1.7rem;
            }
            
            .gallery-grid {
                grid-template-columns: 1fr;
            }
        }

