* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial', sans-serif;
        }
        
        :root {
            --primary: #d50000;
            --secondary: #212121;
            --light: #f5f5f5;
            --accent: #ff9100;
            --dark: #000000;
        }
        
        body {
            background-color: var(--light);
            color: var(--secondary);
            line-height: 1.6;
            overflow-x: hidden;
            padding-top: 80px;
        }
        
        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            background: var(--primary);
            z-index: 1000;
            padding: 15px 0;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
        }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .logo {
            font-size: 28px;
            font-weight: bold;
            color: var(--light);
            text-decoration: none;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        nav ul {
            display: flex;
            list-style: none;
        }
        
        nav ul li {
            margin-left: 25px;
        }
        
        nav ul li a {
            color: var(--light);
            text-decoration: none;
            font-size: 16px;
            font-weight: bold;
            text-transform: uppercase;
            transition: all 0.3s;
        }
        
        nav ul li a:hover {
            color: var(--accent);
        }
        
        .burger {
            display: none;
            cursor: pointer;
        }
        
        .burger div {
            width: 25px;
            height: 3px;
            background-color: var(--light);
            margin: 5px 0;
            transition: all 0.3s;
        }
        
        .hero {
            padding: 100px 0;
            background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url("../img/10.webp") center/cover no-repeat;
            color: var(--light);
            text-align: center;
        }
        
        .hero h1 {
            font-size: 48px;
            margin-bottom: 20px;
            text-transform: uppercase;
            letter-spacing: 2px;
        }
        
        .hero p {
            font-size: 20px;
            max-width: 700px;
            margin: 0 auto 30px;
        }
        
        .btn {
            display: inline-block;
            padding: 12px 30px;
            background: var(--primary);
            color: white;
            text-decoration: none;
            border-radius: 0;
            font-weight: bold;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: all 0.3s;
            border: 2px solid var(--primary);
        }
        
        .btn:hover {
            background: transparent;
            color: var(--primary);
        }
        
        section {
            padding: 80px 0;
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 50px;
        }
        
        .section-title h2 {
            font-size: 36px;
            color: var(--primary);
            margin-bottom: 15px;
            text-transform: uppercase;
            position: relative;
            display: inline-block;
        }
        
        .section-title h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 4px;
            background: var(--primary);
        }
        
        .about-content {
            display: flex;
            align-items: center;
            gap: 50px;
        }
        
        .about-text {
            flex: 1;
        }
        
        .about-text h3 {
            font-size: 28px;
            color: var(--primary);
            margin-bottom: 20px;
            text-transform: uppercase;
        }
        
        .about-text p {
            font-size: 18px;
            line-height: 1.6;
            margin-bottom: 20px;
        }
        
        .about-image {
            flex: 1;
        }
        
        .about-image img {
            width: 100%;
            border: 4px solid var(--primary);
        }
        
        .products-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }
        
        .product-card {
            background: var(--light);
            border: 2px solid var(--secondary);
            padding: 25px;
            transition: all 0.3s;
        }
        
        .product-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        }
        
        .product-card h3 {
            font-size: 24px;
            color: var(--primary);
            margin-bottom: 15px;
            text-transform: uppercase;
        }
        
        .product-card p {
            font-size: 16px;
            line-height: 1.5;
            margin-bottom: 15px;
        }
        
        .prices-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
        }
        
        .price-card {
            background: var(--light);
            border: 2px solid var(--primary);
            padding: 30px;
            text-align: center;
            transition: all 0.3s;
        }
        
        .price-card:hover {
            transform: scale(1.05);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        }
        
        .price-card h3 {
            font-size: 24px;
            color: var(--primary);
            margin-bottom: 15px;
            text-transform: uppercase;
        }
        
        .price-card .price {
            font-size: 36px;
            color: var(--secondary);
            margin-bottom: 20px;
            font-weight: bold;
        }
        
        .price-card p {
            font-size: 16px;
            line-height: 1.5;
            margin-bottom: 20px;
        }
        
        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
        }
        
        .gallery-item {
            position: relative;
            overflow: hidden;
            border: 4px solid var(--primary);
        }
        
        .gallery-item img {
            width: 100%;
            height: 200px;
            object-fit: cover;
            transition: transform 0.5s;
        }
        
        .gallery-item:hover img {
            transform: scale(1.1);
        }
        
        .feedback-slider {
            position: relative;
            overflow: hidden;
        }
        
        .feedback-container {
            display: flex;
            transition: transform 0.5s;
        }
        
        .feedback-item {
            min-width: 100%;
            background: var(--light);
            border: 2px solid var(--primary);
            padding: 30px;
            text-align: center;
        }
        
        .feedback-item p {
            font-size: 18px;
            line-height: 1.6;
            margin-bottom: 20px;
            font-style: italic;
        }
        
        .feedback-item h4 {
            font-size: 20px;
            color: var(--primary);
            text-transform: uppercase;
        }
        
        .feedback-nav {
            display: flex;
            justify-content: center;
            margin-top: 30px;
        }
        
        .feedback-nav button {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: var(--secondary);
            border: none;
            margin: 0 5px;
            cursor: pointer;
            transition: all 0.3s;
        }
        
        .feedback-nav button.active {
            background: var(--primary);
        }
        
        .faq-item {
            background: var(--light);
            border: 2px solid var(--secondary);
            margin-bottom: 20px;
            overflow: hidden;
        }
        
        .faq-question {
            padding: 20px;
            font-size: 18px;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            background: var(--primary);
            color: var(--light);
            font-weight: bold;
            text-transform: uppercase;
        }
        
        .faq-question::after {
            content: '+';
            font-size: 24px;
        }
        
        .faq-answer {
            padding: 0 20px;
            max-height: 0;
            overflow: hidden;
            transition: all 0.3s;
            background: var(--light);
        }
        
        .faq-item.active .faq-question::after {
            content: '-';
        }
        
        .faq-item.active .faq-answer {
            padding: 20px;
            max-height: 200px;
        }
        
        .contact-form {
            max-width: 600px;
            margin: 0 auto;
            background: var(--light);
            border: 2px solid var(--primary);
            padding: 30px;
        }
        
        .form-group {
            margin-bottom: 20px;
        }
        
        .form-group label {
            display: block;
            margin-bottom: 8px;
            color: var(--primary);
            font-weight: bold;
            text-transform: uppercase;
        }
        
        .form-group input {
            width: 100%;
            padding: 12px;
            background: var(--light);
            border: 2px solid var(--secondary);
            color: var(--secondary);
            font-size: 16px;
            text-transform: uppercase;
        }
        
        .form-group input:focus {
            outline: none;
            border-color: var(--primary);
        }
        
        .disclaimer {
            background: var(--light);
            border: 2px solid var(--primary);
            padding: 20px;
            margin-top: 50px;
            text-align: center;
        }
        
        .disclaimer p {
            font-size: 14px;
            line-height: 1.5;
            font-weight: bold;
            text-transform: uppercase;
        }
        
        footer {
            background: var(--primary);
            padding: 50px 0 20px;
            color: var(--light);
        }
        
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 30px;
        }
        
        .footer-column h3 {
            font-size: 20px;
            margin-bottom: 20px;
            text-transform: uppercase;
        }
        
        .footer-column ul {
            list-style: none;
        }
        
        .footer-column ul li {
            margin-bottom: 10px;
        }
        
        .footer-column ul li a {
            color: var(--light);
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .footer-column ul li a:hover {
            color: var(--accent);
        }
        
        .footer-bottom {
            text-align: center;
            padding-top: 20px;
            border-top: 2px solid var(--light);
            font-size: 14px;
            text-transform: uppercase;
        }
        
        .cookie-banner {
            position: fixed;
            bottom: 20px;
            left: 20px;
            right: 20px;
            background: var(--primary);
            border: 2px solid var(--light);
            padding: 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            z-index: 1001;
            color: var(--light);
        }
        
        .cookie-text {
            flex: 1;
            margin-right: 20px;
        }
        
        .cookie-buttons {
            display: flex;
            gap: 10px;
        }
        
        .cookie-btn {
            padding: 8px 15px;
            background: var(--light);
            color: var(--primary);
            border: none;
            font-weight: bold;
            text-transform: uppercase;
            cursor: pointer;
            transition: all 0.3s;
        }
        
        .cookie-btn:hover {
            background: var(--accent);
            color: var(--light);
        }
        
        .modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.8);
            z-index: 1002;
            justify-content: center;
            align-items: center;
        }
        
        .modal-content {
            background: var(--light);
            border: 2px solid var(--primary);
            padding: 30px;
            text-align: center;
            max-width: 400px;
        }
        
        .modal-content h3 {
            color: var(--primary);
            margin-bottom: 20px;
            text-transform: uppercase;
        }
        
        .modal-close {
            margin-top: 20px;
            padding: 10px 20px;
            background: var(--primary);
            color: var(--light);
            border: none;
            font-weight: bold;
            text-transform: uppercase;
            cursor: pointer;
        }
        
        @media (max-width: 768px) {
            .burger {
                display: block;
            }
            
            nav ul {
                position: absolute;
                top: 70px;
                left: 0;
                width: 100%;
                background: var(--primary);
                flex-direction: column;
                align-items: center;
                padding: 20px 0;
                transform: translateY(-150%);
                transition: transform 0.3s;
            }
            
            nav ul.active {
                transform: translateY(0);
            }
            
            nav ul li {
                margin: 10px 0;
            }
            
            .hero h1 {
                font-size: 36px;
            }
            
            .about-content {
                flex-direction: column;
            }
            
            .cookie-banner {
                flex-direction: column;
                align-items: flex-start;
            }
            
            .cookie-buttons {
                margin-top: 15px;
            }
        }

