* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial Narrow', sans-serif;
            text-transform: uppercase;
        }
        
        body {
            background-color: #e0e0e0;
            color: #212121;
            line-height: 1.6;
            overflow-x: hidden;
        }
        
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        /* Header */
        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            background-color: #d32f2f;
            z-index: 1000;
            padding: 15px 0;
            box-shadow: 0 4px 8px 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: #ffffff;
            text-decoration: none;
            letter-spacing: 2px;
        }
        
        .nav-menu {
            display: flex;
            list-style: none;
        }
        
        .nav-menu li {
            margin-left: 30px;
        }
        
        .nav-menu a {
            color: #ffffff;
            text-decoration: none;
            font-size: 16px;
            font-weight: bold;
            transition: all 0.3s ease;
        }
        
        .nav-menu a:hover {
            color: #ffcdd2;
            border-bottom: 2px solid #ffcdd2;
        }
        
        .burger {
            display: none;
            cursor: pointer;
        }
        
        .burger div {
            width: 25px;
            height: 3px;
            background-color: #ffffff;
            margin: 5px 0;
            transition: all 0.3s ease;
        }
        
        /* Hero Section */
        .hero {
            height: 100vh;
            background: linear-gradient(rgba(211, 47, 47, 0.8), rgba(33, 33, 33, 0.9)), url('../img/22.webp');
            background-size: cover;
            background-position: center;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        
        .hero-content {
            z-index: 2;
            max-width: 800px;
            padding: 0 20px;
        }
        
        .hero h1 {
            font-size: 3.5rem;
            margin-bottom: 20px;
            color: #ffffff;
            text-shadow: 2px 2px 0 #000;
            letter-spacing: 3px;
        }
        
        .hero p {
            font-size: 1.2rem;
            margin-bottom: 30px;
            color: #ffcdd2;
            font-weight: bold;
        }
        
        .btn {
            display: inline-block;
            padding: 15px 40px;
            background-color: #212121;
            color: #ffffff;
            text-decoration: none;
            font-weight: bold;
            transition: all 0.3s ease;
            border: 2px solid #ffffff;
        }
        
        .btn:hover {
            background-color: #ffffff;
            color: #d32f2f;
        }
        
        /* About Section */
        .about {
            padding: 100px 0;
            background-color: #f5f5f5;
        }
        
        .section-title {
            text-align: center;
            font-size: 2.5rem;
            margin-bottom: 50px;
            color: #d32f2f;
            position: relative;
            display: inline-block;
            width: 100%;
            letter-spacing: 2px;
        }
        
        .section-title:after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 4px;
            background-color: #212121;
        }
        
        .about-content {
            display: flex;
            align-items: center;
            gap: 50px;
        }
        
        .about-text {
            flex: 1;
        }
        
        .about-text p {
            margin-bottom: 20px;
            font-size: 1.1rem;
            text-align: justify;
        }
        
        .about-image {
            flex: 1;
            text-align: center;
        }
        
        .about-image img {
            max-width: 100%;
            border: 4px solid #d32f2f;
            box-shadow: 8px 8px 0 rgba(0, 0, 0, 0.2);
        }
        
        /* Products Section */
        .products {
            padding: 100px 0;
            background-color: #212121;
            color: #ffffff;
        }
        
        .products .section-title {
            color: #ffffff;
        }
        
        .products .section-title:after {
            background-color: #d32f2f;
        }
        
        .products-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }
        
        .product-card {
            background-color: #f5f5f5;
            color: #212121;
            padding: 30px;
            border: 3px solid #d32f2f;
            text-align: center;
            transition: transform 0.3s ease;
        }
        
        .product-card:hover {
            transform: translateY(-10px);
        }
        
        .product-card h3 {
            font-size: 1.5rem;
            margin-bottom: 15px;
            color: #d32f2f;
        }
        
        .product-card img {
            width: 100%;
            height: 200px;
            object-fit: cover;
            margin-bottom: 20px;
            border: 2px solid #212121;
        }
        
        /* Prices Section */
        .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: #ffffff;
            border: 3px solid #212121;
            padding: 30px;
            text-align: center;
            position: relative;
            transition: all 0.3s ease;
        }
        
        .price-card.featured {
            border-color: #d32f2f;
            transform: scale(1.05);
        }
        
        .price-card h3 {
            font-size: 1.8rem;
            margin-bottom: 20px;
            color: #d32f2f;
        }
        
        .price {
            font-size: 2.5rem;
            font-weight: bold;
            margin-bottom: 20px;
            color: #212121;
        }
        
        .price-card ul {
            list-style: none;
            margin-bottom: 30px;
        }
        
        .price-card li {
            margin-bottom: 10px;
            position: relative;
            padding-left: 25px;
        }
        
        .price-card li:before {
            content: '✓';
            position: absolute;
            left: 0;
            color: #d32f2f;
            font-weight: bold;
        }
        
        /* Gallery Section */
        .gallery {
            padding: 100px 0;
            background-color: #212121;
            color: #ffffff;
        }
        
        .gallery .section-title {
            color: #ffffff;
        }
        
        .gallery .section-title:after {
            background-color: #d32f2f;
        }
        
        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 20px;
        }
        
        .gallery-item {
            position: relative;
            overflow: hidden;
            height: 250px;
            border: 3px solid #d32f2f;
        }
        
        .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 {
            padding: 100px 0;
            background-color: #f5f5f5;
        }
        
        .feedback-slider {
            position: relative;
            max-width: 800px;
            margin: 0 auto;
            overflow: hidden;
        }
        
        .feedback-slide {
            display: none;
            background-color: #ffffff;
            padding: 30px;
            border: 3px solid #d32f2f;
            text-align: center;
        }
        
        .feedback-slide.active {
            display: block;
        }
        
        .feedback-slide p {
            font-style: italic;
            margin-bottom: 20px;
            font-size: 1.1rem;
        }
        
        .feedback-slide h4 {
            font-weight: bold;
            color: #d32f2f;
        }
        
        .slider-controls {
            display: flex;
            justify-content: center;
            margin-top: 20px;
        }
        
        .slider-btn {
            width: 40px;
            height: 40px;
            background-color: #212121;
            color: #ffffff;
            border: none;
            margin: 0 10px;
            cursor: pointer;
            font-size: 18px;
            transition: all 0.3s ease;
        }
        
        .slider-btn:hover {
            background-color: #d32f2f;
        }
        
        /* FAQ Section */
        .faq {
            padding: 100px 0;
            background-color: #212121;
            color: #ffffff;
        }
        
        .faq .section-title {
            color: #ffffff;
        }
        
        .faq .section-title:after {
            background-color: #d32f2f;
        }
        
        .faq-item {
            margin-bottom: 20px;
            border: 1px solid #d32f2f;
        }
        
        .faq-question {
            background-color: #d32f2f;
            color: #ffffff;
            padding: 15px 20px;
            cursor: pointer;
            font-weight: bold;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .faq-answer {
            padding: 0 20px;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease;
        }
        
        .faq-item.active .faq-answer {
            padding: 20px;
            max-height: 300px;
        }
        
        /* Contact Form */
        .contact {
            padding: 100px 0;
            background-color: #f5f5f5;
        }
        
        .contact-form {
            max-width: 600px;
            margin: 0 auto;
            background-color: #ffffff;
            padding: 30px;
            border: 3px solid #d32f2f;
        }
        
        .form-group {
            margin-bottom: 20px;
        }
        
        .form-group label {
            display: block;
            margin-bottom: 5px;
            font-weight: bold;
            color: #212121;
        }
        
        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 10px;
            border: 2px solid #212121;
            background-color: #f5f5f5;
            font-family: inherit;
            text-transform: uppercase;
        }
        
        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: #d32f2f;
        }
        
        .form-btn {
            background-color: #d32f2f;
            color: #ffffff;
            border: none;
            padding: 12px 30px;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s ease;
            text-transform: uppercase;
        }
        
        .form-btn:hover {
            background-color: #212121;
        }
        
        /* Disclaimer */
        .disclaimer {
            background-color: #212121;
            color: #ffffff;
            padding: 20px;
            text-align: center;
            font-size: 0.9rem;
        }
        
        /* Footer */
        footer {
            background-color: #d32f2f;
            color: #ffffff;
            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 {
            margin-bottom: 20px;
            font-size: 1.3rem;
            border-bottom: 2px solid #ffffff;
            padding-bottom: 10px;
        }
        
        .footer-column ul {
            list-style: none;
        }
        
        .footer-column ul li {
            margin-bottom: 10px;
        }
        
        .footer-column ul li a {
            color: #ffffff;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        
        .footer-column ul li a:hover {
            color: #ffcdd2;
        }
        
        .footer-bottom {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.3);
            font-size: 0.9rem;
        }
        
        /* Cookie Banner */
        .cookie-banner {
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            background-color: #212121;
            color: #ffffff;
            padding: 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            z-index: 1001;
            transform: translateY(100%);
            transition: transform 0.5s ease;
        }
        
        .cookie-banner.show {
            transform: translateY(0);
        }
        
        .cookie-text {
            flex: 1;
            margin-right: 20px;
        }
        
        .cookie-btn {
            background-color: #d32f2f;
            color: #ffffff;
            border: none;
            padding: 10px 20px;
            cursor: pointer;
            font-weight: bold;
            text-transform: uppercase;
        }
        
        /* Popup */
        .popup {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.8);
            display: flex;
            justify-content: center;
            align-items: center;
            z-index: 1002;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
        }
        
        .popup.show {
            opacity: 1;
            visibility: visible;
        }
        
        .popup-content {
            background-color: #ffffff;
            color: #212121;
            padding: 40px;
            text-align: center;
            max-width: 500px;
            width: 90%;
            border: 3px solid #d32f2f;
        }
        
        .popup-close {
            background-color: #d32f2f;
            color: #ffffff;
            border: none;
            padding: 10px 20px;
            cursor: pointer;
            font-weight: bold;
            text-transform: uppercase;
            margin-top: 20px;
        }
        
        /* Responsive */
        @media (max-width: 768px) {
            .nav-menu {
                position: fixed;
                top: 70px;
                left: -100%;
                width: 100%;
                height: calc(100vh - 70px);
                background-color: #d32f2f;
                flex-direction: column;
                justify-content: flex-start;
                align-items: center;
                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.5rem;
            }
            
            .about-content {
                flex-direction: column;
            }
            
            .price-card.featured {
                transform: scale(1);
            }
        }

