* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial', sans-serif;
        }
        
        :root {
            --primary: #C41E3A;
            --secondary: #FFD700;
            --accent: #003366;
            --dark: #1A1A1A;
            --light: #F5F5F5;
            --gray: #A9A9A9;
        }
        
        body {
            background-color: var(--dark);
            color: var(--light);
            overflow-x: hidden;
        }
        
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        /* Header Styles */
        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            background-color: rgba(26, 26, 26, 0.9);
            backdrop-filter: blur(10px);
            z-index: 1000;
            padding: 15px 0;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        }
        
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .logo {
            font-size: 24px;
            font-weight: bold;
            color: var(--secondary);
            text-decoration: none;
            letter-spacing: 1px;
            text-transform: uppercase;
            font-family: 'Arial Black', sans-serif;
        }
        
        .nav-menu {
            display: flex;
            list-style: none;
        }
        
        .nav-menu li {
            margin-left: 30px;
        }
        
        .nav-menu a {
            color: var(--light);
            text-decoration: none;
            font-size: 16px;
            transition: color 0.3s;
            font-weight: bold;
            text-transform: uppercase;
        }
        
        .nav-menu a:hover {
            color: var(--secondary);
        }
        
        .burger {
            display: none;
            cursor: pointer;
        }
        
        .burger span {
            display: block;
            width: 25px;
            height: 3px;
            margin: 5px 0;
            background-color: var(--light);
            transition: 0.3s;
        }
        
        /* Hero Section */
        .hero {
            height: 100vh;
            display: flex;
            align-items: center;
            position: relative;
            overflow: hidden;
            background: linear-gradient(135deg, var(--dark) 0%, #333333 100%);
        }
        
        .hero-content {
            position: relative;
            z-index: 2;
            max-width: 600px;
        }
        
        .hero h1 {
            font-size: 48px;
            margin-bottom: 20px;
            color: var(--secondary);
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
            font-family: 'Arial Black', sans-serif;
            text-transform: uppercase;
            letter-spacing: 2px;
        }
        
        .hero p {
            font-size: 18px;
            margin-bottom: 30px;
            line-height: 1.6;
        }
        
        .btn {
            display: inline-block;
            padding: 12px 30px;
            background-color: var(--primary);
            color: var(--light);
            text-decoration: none;
            border-radius: 0;
            font-weight: bold;
            transition: all 0.3s;
            border: none;
            cursor: pointer;
            font-size: 16px;
            text-transform: uppercase;
            letter-spacing: 1px;
            border: 2px solid var(--primary);
        }
        
        .btn:hover {
            background-color: transparent;
            color: var(--primary);
            transform: translateY(-3px);
        }
        
        .hero-bg {
            position: absolute;
            top: 0;
            right: 0;
            width: 50%;
            height: 100%;
            background-image: url('../img/01.webp');
            background-size: cover;
            background-position: center;
            opacity: 0.8;
        }
        
        /* About Section */
        .about {
            padding: 100px 0;
            background-color: #222222;
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 50px;
        }
        
        .section-title h2 {
            font-size: 36px;
            color: var(--secondary);
            margin-bottom: 15px;
            text-transform: uppercase;
            font-family: 'Arial Black', sans-serif;
            letter-spacing: 1px;
        }
        
        .section-title p {
            font-size: 18px;
            color: #D1D5DB;
            max-width: 700px;
            margin: 0 auto;
        }
        
        .about-content {
            display: flex;
            align-items: center;
            gap: 50px;
        }
        
        .about-text {
            flex: 1;
        }
        
        .about-text h3 {
            font-size: 24px;
            margin-bottom: 20px;
            color: var(--primary);
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        .about-text p {
            margin-bottom: 20px;
            line-height: 1.7;
        }
        
        .about-image {
            flex: 1;
            height: 400px;
            background-image: url('../img/23.webp');
            background-size: cover;
            background-position: center;
            border: 5px solid var(--primary);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
        }
        
        /* Products Section */
        .products {
            padding: 100px 0;
            background-color: #1A1A1A;
        }
        
        .products-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }
        
        .product-card {
            background-color: #222222;
            border: 2px solid var(--primary);
            overflow: hidden;
            transition: transform 0.3s;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        }
        
        .product-card:hover {
            transform: translateY(-10px);
        }
        
        .product-image {
            height: 200px;
            background-size: cover;
            background-position: center;
        }
        
        .product-content {
            padding: 20px;
        }
        
        .product-content h3 {
            font-size: 20px;
            margin-bottom: 15px;
            color: var(--secondary);
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        .product-content p {
            margin-bottom: 20px;
            line-height: 1.6;
        }
        
        /* Prices Section */
        .prices {
            padding: 100px 0;
            background-color: #222222;
        }
        
        .prices-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }
        
        .price-card {
            background-color: #1A1A1A;
            border: 2px solid var(--accent);
            padding: 30px;
            text-align: center;
            transition: all 0.3s;
            position: relative;
            overflow: hidden;
        }
        
        .price-card.featured {
            border: 2px solid var(--secondary);
            transform: scale(1.05);
        }
        
        .price-card h3 {
            font-size: 24px;
            margin-bottom: 15px;
            color: var(--light);
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        .price {
            font-size: 36px;
            color: var(--secondary);
            margin-bottom: 20px;
            font-weight: bold;
        }
        
        .price-card p {
            margin-bottom: 15px;
            line-height: 1.6;
        }
        
        .price-card ul {
            list-style: none;
            margin-bottom: 30px;
            text-align: left;
        }
        
        .price-card ul li {
            padding: 8px 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }
        
        /* Gallery Section */
        .gallery {
            padding: 100px 0;
            background-color: #1A1A1A;
        }
        
        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 15px;
        }
        
        .gallery-item {
            height: 250px;
            background-size: cover;
            background-position: center;
            border: 3px solid var(--primary);
            cursor: pointer;
            transition: transform 0.3s;
        }
        
        .gallery-item:hover {
            transform: scale(1.05);
        }
        
        /* Feedback Section */
        .feedback {
            padding: 100px 0;
            background-color: #222222;
        }
        
        .feedback-slider {
            position: relative;
            max-width: 800px;
            margin: 0 auto;
        }
        
        .feedback-item {
            background-color: #1A1A1A;
            padding: 30px;
            border: 2px solid var(--accent);
            display: none;
        }
        
        .feedback-item.active {
            display: block;
        }
        
        .feedback-content {
            display: flex;
            align-items: center;
            gap: 30px;
        }
        
        .feedback-image {
            width: 100px;
            height: 100px;
            border-radius: 0;
            background-size: cover;
            background-position: center;
            flex-shrink: 0;
            border: 3px solid var(--primary);
        }
        
        .feedback-text h3 {
            font-size: 20px;
            margin-bottom: 10px;
            color: var(--secondary);
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        .feedback-text p {
            font-style: italic;
            margin-bottom: 15px;
            line-height: 1.6;
        }
        
        .feedback-text .rating {
            color: var(--secondary);
        }
        
        .slider-controls {
            text-align: center;
            margin-top: 30px;
        }
        
        .slider-btn {
            background-color: var(--primary);
            color: var(--light);
            border: none;
            width: 40px;
            height: 40px;
            border-radius: 0;
            cursor: pointer;
            margin: 0 10px;
            font-size: 18px;
            transition: all 0.3s;
            font-weight: bold;
        }
        
        .slider-btn:hover {
            background-color: var(--secondary);
        }
        
        /* FAQ Section */
        .faq {
            padding: 100px 0;
            background-color: #1A1A1A;
        }
        
        .faq-container {
            max-width: 800px;
            margin: 0 auto;
        }
        
        .faq-item {
            background-color: #222222;
            margin-bottom: 15px;
            overflow: hidden;
            border: 1px solid var(--accent);
        }
        
        .faq-question {
            padding: 20px;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-weight: bold;
            color: var(--light);
            transition: background-color 0.3s;
        }
        
        .faq-question:hover {
            background-color: rgba(196, 30, 58, 0.2);
        }
        
        .faq-answer {
            padding: 0 20px;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s, padding 0.3s;
        }
        
        .faq-answer.active {
            padding: 20px;
            max-height: 300px;
        }
        
        .faq-icon {
            transition: transform 0.3s;
        }
        
        .faq-icon.active {
            transform: rotate(180deg);
        }
        
        /* Contact Form */
        .contact {
            padding: 100px 0;
            background-color: #222222;
        }
        
        .contact-form {
            max-width: 600px;
            margin: 0 auto;
            background-color: #1A1A1A;
            padding: 40px;
            border: 2px solid var(--accent);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
        }
        
        .form-group {
            margin-bottom: 20px;
        }
        
        .form-group label {
            display: block;
            margin-bottom: 8px;
            color: var(--secondary);
            font-weight: bold;
            text-transform: uppercase;
        }
        
        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 12px;
            background-color: #222222;
            border: 2px solid var(--accent);
            color: var(--light);
            font-size: 16px;
        }
        
        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--secondary);
        }
        
        /* Disclaimer */
        .disclaimer {
            background-color: #0D0D0D;
            padding: 30px 0;
            text-align: center;
            font-size: 14px;
            color: #9CA3AF;
            border-top: 3px solid var(--primary);
        }
        
        /* Footer */
        footer {
            background-color: #0D0D0D;
            padding: 50px 0 30px;
        }
        
        .footer-content {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            margin-bottom: 30px;
        }
        
        .footer-column h3 {
            font-size: 18px;
            margin-bottom: 20px;
            color: var(--secondary);
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        .footer-column ul {
            list-style: none;
        }
        
        .footer-column ul li {
            margin-bottom: 10px;
        }
        
        .footer-column ul li a {
            color: #D1D5DB;
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .footer-column ul li a:hover {
            color: var(--secondary);
        }
        
        .footer-bottom {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: #9CA3AF;
            font-size: 14px;
        }
        
        /* Cookie Banner */
        .cookie-banner {
            position: fixed;
            bottom: 20px;
            left: 20px;
            right: 20px;
            background-color: #1A1A1A;
            color: var(--light);
            padding: 20px;
            border: 2px solid var(--primary);
            display: flex;
            justify-content: space-between;
            align-items: center;
            z-index: 1001;
            transform: translateY(150%);
            transition: transform 0.5s;
        }
        
        .cookie-banner.active {
            transform: translateY(0);
        }
        
        .cookie-text {
            flex: 1;
            margin-right: 20px;
        }
        
        .cookie-buttons {
            display: flex;
            gap: 10px;
        }
        
        .cookie-btn {
            padding: 8px 16px;
            border: none;
            border-radius: 0;
            cursor: pointer;
            font-weight: bold;
            transition: all 0.3s;
            text-transform: uppercase;
        }
        
        .cookie-accept {
            background-color: var(--primary);
            color: var(--light);
        }
        
        .cookie-decline {
            background-color: transparent;
            color: var(--light);
            border: 1px solid var(--light);
        }
        
        /* Popup */
        .popup {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.7);
            display: flex;
            justify-content: center;
            align-items: center;
            z-index: 1002;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s;
        }
        
        .popup.active {
            opacity: 1;
            visibility: visible;
        }
        
        .popup-content {
            background-color: #1A1A1A;
            padding: 40px;
            border: 2px solid var(--primary);
            text-align: center;
            max-width: 500px;
            width: 90%;
            transform: scale(0.7);
            transition: transform 0.3s;
        }
        
        .popup.active .popup-content {
            transform: scale(1);
        }
        
        .popup-close {
            position: absolute;
            top: 15px;
            right: 15px;
            font-size: 24px;
            cursor: pointer;
            color: var(--light);
        }
        
        /* Responsive */
        @media (max-width: 992px) {
            .products-grid,
            .prices-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .gallery-grid {
                grid-template-columns: repeat(3, 1fr);
            }
        }
        
        @media (max-width: 768px) {
            .nav-menu {
                position: fixed;
                top: 0;
                right: -100%;
                width: 70%;
                height: 100vh;
                background-color: rgba(26, 26, 26, 0.95);
                flex-direction: column;
                justify-content: center;
                align-items: center;
                transition: right 0.5s;
            }
            
            .nav-menu.active {
                right: 0;
            }
            
            .nav-menu li {
                margin: 15px 0;
            }
            
            .burger {
                display: block;
            }
            
            .hero h1 {
                font-size: 36px;
            }
            
            .about-content {
                flex-direction: column;
            }
            
            .about-image {
                width: 100%;
            }
            
            .products-grid,
            .prices-grid,
            .gallery-grid {
                grid-template-columns: 1fr;
            }
            
            .footer-content {
                grid-template-columns: 1fr;
            }
            
            .cookie-banner {
                flex-direction: column;
            }
            
            .cookie-text {
                margin-right: 0;
                margin-bottom: 15px;
            }
        }

