* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial', sans-serif;
        }
        
        body {background-color: #f5f5f5;
            color: #1a1a1a;
            line-height: 1.6;}
        
        main {
            max-width: 1000px;
            margin: 0 auto;
            background-color: #fff;
            padding: 40px;
            box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
        }
        
        h1, h2, h3 {
            font-weight: bold;
            margin-bottom: 20px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        h1 {
            font-size: 2.5rem;
            color: #b30000;
            text-shadow: 2px 2px 0 #000;
            margin-bottom: 30px;
            text-align: center;
        }
        
        h2 {
            font-size: 1.8rem;
            color: #1a1a1a;
            border-left: 5px solid #b30000;
            padding-left: 15px;
            margin-top: 30px;
        }
        
        h3 {
            font-size: 1.3rem;
            color: #333;
            margin-bottom: 15px;
            margin-top: 25px;
        }
        
        p {
            margin-bottom: 15px;
            font-size: 1.1rem;
        }
        
        ul {
            margin-left: 30px;
            margin-bottom: 20px;
        }
        
        li {
            margin-bottom: 10px;
        }
        
        table {
            width: 100%;
            border-collapse: collapse;
            margin: 20px 0;
        }
        
        th, td {
            padding: 12px;
            text-align: left;
            border-bottom: 1px solid #ddd;
        }
        
        th {
            background-color: #f2f2f2;
        }
        
        .last-update {
            font-style: italic;
            text-align: right;
            margin-bottom: 30px;
            color: #666;
        }
/* Общие стили */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial', sans-serif;
        }
        
        body {background-color: #f5f5f5;
            color: #1a1a1a;
            line-height: 1.6;
            padding-top: 80px;}
        
        .container {
            width: 100%;
            padding: 0 15px;
            margin: 0 auto;
        }
        
        h1, h2, h3 {
            font-weight: bold;
            margin-bottom: 20px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        h1 {
            font-size: 2.5rem;
            color: #b30000;
            text-shadow: 2px 2px 0 #000;
        }
        
        h2 {
            font-size: 2rem;
            color: #1a1a1a;
            border-left: 5px solid #b30000;
            padding-left: 15px;
        }
        
        h3 {
            font-size: 1.5rem;
            color: #333;
            margin-bottom: 15px;
        }
        
        p {
            margin-bottom: 15px;
            font-size: 1.1rem;
        }
        
        section {
            padding: 60px 0;
            border-bottom: 2px solid #b30000;
        }
        
        .btn {
            display: inline-block;
            background-color: #b30000;
            color: #fff;
            padding: 12px 30px;
            text-decoration: none;
            text-transform: uppercase;
            font-weight: bold;
            border: 2px solid #000;
            box-shadow: 4px 4px 0 #000;
            transition: all 0.3s ease;
            cursor: pointer;
        }
        
        .btn:hover {
            background-color: #ff1a1a;
            box-shadow: 2px 2px 0 #000;
            transform: translate(2px, 2px);
        }
        
        /* Хедер */
        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            background-color: #1a1a1a;
            color: #fff;
            padding: 15px 0;
            z-index: 1000;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
        }
        
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        .logo {
            font-size: 1.8rem;
            font-weight: bold;
            color: #b30000;
            text-decoration: none;
            text-transform: uppercase;
        }
        
        .nav-menu {
            display: flex;
            list-style: none;
        }
        
        .nav-menu li {
            margin-left: 25px;
        }
        
        .nav-menu a {
            color: #fff;
            text-decoration: none;
            text-transform: uppercase;
            font-weight: bold;
            transition: color 0.3s ease;
        }
        
        .nav-menu a:hover {
            color: #b30000;
        }
        
        .burger {
            display: none;
            cursor: pointer;
        }
        
        .burger div {
            width: 25px;
            height: 3px;
            background-color: #fff;
            margin: 5px;
            transition: all 0.3s ease;
        }
        
        /* Hero секция */
        .hero {
            background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://images.unsplash.com/photo-1725352200750-ad02ebbb1148?q=80&w=737&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D') no-repeat center center/cover;
            color: #fff;
            text-align: center;
            padding: 150px 0;
            position: relative;
        }
        
        .hero-content {
            max-width: 800px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }
        
        .hero h1 {
            font-size: 3.5rem;
            margin-bottom: 20px;
            color: #fff;
            text-shadow: 3px 3px 0 #b30000;
        }
        
        .hero p {
            font-size: 1.5rem;
            margin-bottom: 30px;
        }
        
        /* About секция */
        .about {
            background-color: #e8e8e8;
        }
        
        .about-content {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 40px;
        }
        
        .about-text {
            flex: 1;
            min-width: 300px;
        }
        
        .about-image {
            flex: 1;
            min-width: 300px;
            text-align: center;
        }
        
        .about-image img {
            max-width: 100%;
            border: 5px solid #b30000;
            box-shadow: 10px 10px 0 #1a1a1a;
        }
        
        /* Products секция */
        .products {
            background-color: #fff;
        }
        
        .product-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }
        
        .product-card {
            background-color: #f5f5f5;
            padding: 25px;
            border: 3px solid #1a1a1a;
            box-shadow: 5px 5px 0 #b30000;
            transition: transform 0.3s ease;
        }
        
        .product-card:hover {
            transform: translateY(-10px);
        }
        
        .product-card h3 {
            color: #b30000;
            border-bottom: 2px solid #1a1a1a;
            padding-bottom: 10px;
            margin-bottom: 15px;
        }
        
        /* Prices секция */
        .prices {
            background-color: #e8e8e8;
        }
        
        .price-table {
            width: 100%;
            border-collapse: collapse;
            margin: 30px 0;
            background-color: #fff;
            box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
        }
        
        .price-table th, .price-table td {
            padding: 15px;
            text-align: left;
            border-bottom: 1px solid #ddd;
        }
        
        .price-table th {
            background-color: #b30000;
            color: #fff;
            text-transform: uppercase;
        }
        
        .price-table tr:hover {
            background-color: #f5f5f5;
        }
        
        /* Gallery секция */
        .gallery {
            background-color: #fff;
        }
        
        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 15px;
        }
        
        .gallery-item {
            overflow: hidden;
            position: relative;
            height: 250px;
        }
        
        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .gallery-item:hover img {
            transform: scale(1.1);
        }
        
        /* Feedback секция */
        .feedback {
            background-color: #e8e8e8;
            position: relative;
        }
        
        .slider {
            position: relative;
            overflow: hidden;
            height: 300px;
        }
        
        .slide {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0;
            transition: opacity 1s ease;
            background-color: #fff;
            padding: 30px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }
        
        .slide.active {
            opacity: 1;
        }
        
        .client-info {
            display: flex;
            align-items: center;
            margin-bottom: 20px;
        }
        
        .client-info img {
            width: 70px;
            height: 70px;
            border-radius: 50%;
            margin-right: 15px;
            object-fit: cover;
            border: 2px solid #b30000;
        }
        
        .slider-nav {
            text-align: center;
            margin-top: 20px;
        }
        
        .slider-dot {
            display: inline-block;
            width: 12px;
            height: 12px;
            background-color: #bbb;
            border-radius: 50%;
            margin: 0 5px;
            cursor: pointer;
            transition: background-color 0.3s ease;
        }
        
        .slider-dot.active {
            background-color: #b30000;
        }
        
        /* FAQ секция */
        .faq {
            background-color: #fff;
        }
        
        .faq-item {
            margin-bottom: 20px;
            border: 2px solid #1a1a1a;
            padding: 15px;
        }
        
        .faq-question {
            font-weight: bold;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .faq-answer {
            margin-top: 15px;
            display: none;
        }
        
        .faq-answer.active {
            display: block;
        }
        
        /* Contact секция */
        .contact {
            background-color: #e8e8e8;
        }
        
        .contact-form {
            max-width: 600px;
            margin: 0 auto;
            background-color: #fff;
            padding: 30px;
            box-shadow: 10px 10px 0 #1a1a1a;
            border: 3px solid #b30000;
        }
        
        .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: 2px solid #1a1a1a;
            font-size: 1rem;
        }
        
        /* Disclaimer */
        .disclaimer {
            background-color: #1a1a1a;
            color: #fff;
            padding: 30px 0;
            font-size: 0.9rem;
        }
        
        /* Cookie Banner */
        .cookie-banner {
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            background-color: #1a1a1a;
            color: #fff;
            padding: 20px;
            text-align: center;
            z-index: 1000;
            display: none;
        }
        
        .cookie-banner p {
            margin-bottom: 15px;
        }
        
        /* Footer */
        footer {
            background-color: #1a1a1a;
            color: #fff;
            padding: 40px 0 20px;
        }
        
        .footer-content {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        .footer-section {
            flex: 1;
            min-width: 250px;
            margin-bottom: 30px;
        }
        
        .footer-section h3 {
            color: #b30000;
            border-bottom: 2px solid #b30000;
            padding-bottom: 10px;
            margin-bottom: 20px;
        }
        
        .footer-links {
            list-style: none;
        }
        
        .footer-links li {
            margin-bottom: 10px;
        }
        
        .footer-links a {
            color: #fff;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        
        .footer-links a:hover {
            color: #b30000;
        }
        
        .footer-bottom {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid #444;
            margin-top: 20px;
        }
        
        /* Modal */
        .modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.7);
            z-index: 1001;
            justify-content: center;
            align-items: center;
        }
        
        .modal-content {
            background-color: #fff;
            padding: 30px;
            max-width: 500px;
            text-align: center;
            position: relative;
            box-shadow: 10px 10px 0 #1a1a1a;
            border: 3px solid #b30000;
        }
        
        .close-modal {
            position: absolute;
            top: 10px;
            right: 10px;
            font-size: 1.5rem;
            cursor: pointer;
            color: #b30000;
        }
        
        /* Адаптивность */
        @media screen and (max-width: 768px) {
            body {padding-top: 70px;}
            
            .nav-menu {
                position: absolute;
                right: 0;
                top: 70px;
                background-color: #1a1a1a;
                width: 100%;
                flex-direction: column;
                align-items: center;
                padding: 20px 0;
                transform: translateY(-100%);
                transition: transform 0.5s ease;
                z-index: 99;
            }
            
            .nav-menu.active {
                transform: translateY(0);
            }
            
            .nav-menu li {
                margin: 15px 0;
            }
            
            .burger {
                display: block;
            }
            
            .hero h1 {
                font-size: 2.5rem;
            }
            
            .hero p {
                font-size: 1.2rem;
            }
            
            h1 {
                font-size: 2rem;
            }
            
            h2 {
                font-size: 1.7rem;
            }
            
            section {
                padding: 40px 0;
            }
        }
        
        @media screen and (max-width: 480px) {
            .hero {
                padding: 100px 0;
            }
            
            .hero h1 {
                font-size: 2rem;
            }
            
            .btn {
                padding: 10px 20px;
            }
        }

