* { box-sizing: border-box; margin: 0; padding: 0; }
        body {font-family: 'Arial', sans-serif; line-height: 1.6; color: #333; background: #f9f9f9;}
        main { max-width: 800px; margin: 0 auto; background: white; padding: 30px; border-radius: 5px; box-shadow: 0 0 10px rgba(0,0,0,0.1); }
        h1 { color: #cc0000; margin-bottom: 20px; text-align: center; }
        h2 { color: #2b2b2b; margin: 25px 0 15px; padding-bottom: 5px; border-bottom: 2px solid #cc0000; }
        h3 { margin: 20px 0 10px; color: #5a5a5a; }
        p, ul, ol { margin-bottom: 15px; }
        ul, ol { padding-left: 20px; }
        li { margin-bottom: 8px; }
        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; }
/* CSS Reset */
        *, *::before, *::after { box-sizing: border-box; }
        * { margin: 0; padding: 0; }
        body {line-height: 1.5; -webkit-font-smoothing: antialiased;}
        img, picture, video, canvas, svg { display: block; max-width: 100%; }
        input, button, textarea, select { font: inherit; }
        p, h1, h2, h3, h4, h5, h6 { overflow-wrap: break-word; }

        /* Основные стили */
        :root {
            --primary: #cc0000;
            --secondary: #2b2b2b;
            --accent: #f0f0f0;
            --background: #ffffff;
            --text: #000000;
            --gray: #5a5a5a;
        }

        body {font-family: 'Arial', sans-serif;
            color: var(--text);
            background-color: var(--background);
            padding-top: 80px;}

        .container {
            width: 100%;
            padding: 0 20px;
            margin: 0 auto;
        }

        /* Хэдер */
        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            background-color: var(--primary);
            color: var(--accent);
            padding: 15px 0;
            z-index: 1000;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
        }

        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .logo {
            font-weight: bold;
            font-size: 24px;
            text-transform: uppercase;
            letter-spacing: 2px;
        }

        .nav-menu {
            display: flex;
            list-style: none;
        }

        .nav-menu li {
            margin-left: 30px;
        }

        .nav-menu a {
            color: var(--accent);
            text-decoration: none;
            text-transform: uppercase;
            font-weight: bold;
            transition: opacity 0.3s;
        }

        .nav-menu a:hover {
            opacity: 0.8;
        }

        .burger {
            display: none;
            cursor: pointer;
            flex-direction: column;
            justify-content: space-around;
            width: 30px;
            height: 21px;
        }

        .burger div {
            width: 30px;
            height: 3px;
            background-color: var(--accent);
            transition: all 0.3s ease;
        }

        /* Hero секция */
        .hero {
            height: 80vh;
            background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('https://images.unsplash.com/photo-1632760212493-73793779b863?q=80&w=1074&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D') no-repeat center center/cover;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: var(--accent);
            padding: 0 20px;
        }

        .hero-content {
            max-width: 800px;
        }

        .hero h1 {
            font-size: 3.5rem;
            margin-bottom: 20px;
            text-transform: uppercase;
            letter-spacing: 3px;
        }

        .hero p {
            font-size: 1.5rem;
            margin-bottom: 30px;
        }

        .btn {
            display: inline-block;
            background-color: var(--primary);
            color: var(--accent);
            padding: 12px 30px;
            text-decoration: none;
            text-transform: uppercase;
            font-weight: bold;
            border: none;
            cursor: pointer;
            transition: background-color 0.3s;
        }

        .btn:hover {
            background-color: #a30000;
        }

        /* Секции */
        section {
            padding: 80px 0;
        }

        section h2 {
            text-align: center;
            font-size: 2.5rem;
            margin-bottom: 40px;
            text-transform: uppercase;
            color: var(--primary);
            position: relative;
        }

        section h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 4px;
            background-color: var(--primary);
        }

        /* About */
        .about-content {
            max-width: 1000px;
            margin: 0 auto;
            text-align: center;
        }

        .about-content p {
            margin-bottom: 20px;
            font-size: 1.1rem;
        }

        /* Products */
        .products-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .product-card {
            background-color: var(--accent);
            padding: 20px;
            border: 2px solid var(--primary);
            text-align: center;
            transition: transform 0.3s;
        }

        .product-card:hover {
            transform: translateY(-10px);
        }

        .product-card h3 {
            font-size: 1.5rem;
            margin-bottom: 15px;
            color: var(--primary);
        }

        .product-card p {
            margin-bottom: 15px;
        }

        /* Prices */
        .prices-container {
            max-width: 800px;
            margin: 0 auto;
        }

        .price-table {
            width: 100%;
            border-collapse: collapse;
            margin-bottom: 30px;
        }

        .price-table th, .price-table td {
            padding: 15px;
            text-align: left;
            border-bottom: 1px solid var(--gray);
        }

        .price-table th {
            background-color: var(--primary);
            color: var(--accent);
            text-transform: uppercase;
        }

        .price-table tr:last-child td {
            border-bottom: none;
        }

        .discount {
            background-color: #ffebee;
            padding: 20px;
            text-align: center;
            margin-top: 30px;
            border-left: 4px solid var(--primary);
        }

        /* Gallery */
        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 15px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .gallery-item {
            height: 250px;
            overflow: hidden;
            position: relative;
        }

        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s;
        }

        .gallery-item:hover img {
            transform: scale(1.1);
        }

        /* Feedback */
        .feedback-slider {
            max-width: 800px;
            margin: 0 auto;
            position: relative;
            overflow: hidden;
        }

        .feedback-slides {
            display: flex;
            transition: transform 0.5s ease;
        }

        .feedback-slide {
            min-width: 100%;
            padding: 20px;
            background-color: var(--accent);
            border: 1px solid #ddd;
        }

        .feedback-author {
            display: flex;
            align-items: center;
            margin-bottom: 15px;
        }

        .feedback-author img {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            margin-right: 15px;
            object-fit: cover;
        }

        .feedback-text {
            font-style: italic;
            margin-bottom: 15px;
        }

        .slider-controls {
            display: flex;
            justify-content: center;
            margin-top: 20px;
        }

        .slider-btn {
            background-color: var(--primary);
            color: var(--accent);
            border: none;
            padding: 10px 15px;
            margin: 0 5px;
            cursor: pointer;
            transition: background-color 0.3s;
        }

        .slider-btn:hover {
            background-color: #a30000;
        }

        /* FAQ */
        .faq-container {
            max-width: 800px;
            margin: 0 auto;
        }

        .faq-item {
            margin-bottom: 20px;
            border: 1px solid #ddd;
        }

        .faq-question {
            padding: 15px;
            background-color: var(--primary);
            color: var(--accent);
            cursor: pointer;
            position: relative;
            font-weight: bold;
        }

        .faq-question::after {
            content: '+';
            position: absolute;
            right: 15px;
            transition: transform 0.3s;
        }

        .faq-item.active .faq-question::after {
            transform: rotate(45deg);
        }

        .faq-answer {
            padding: 0;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease, padding 0.3s ease;
        }

        .faq-item.active .faq-answer {
            padding: 15px;
            max-height: 300px;
        }

        /* Contact */
        .contact-container {
            max-width: 800px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr;
            gap: 30px;
        }

        .contact-form {
            background-color: var(--accent);
            padding: 30px;
        }

        .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: 10px;
            border: 1px solid #ddd;
        }

        .form-group textarea {
            min-height: 150px;
        }

        /* Popup */
        .popup {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.7);
            z-index: 2000;
            align-items: center;
            justify-content: center;
        }

        .popup-content {
            background-color: var(--background);
            padding: 30px;
            max-width: 500px;
            text-align: center;
            position: relative;
        }

        .close-popup {
            position: absolute;
            top: 10px;
            right: 10px;
            cursor: pointer;
            font-size: 1.5rem;
        }

        /* Disclaimer */
        .disclaimer {
            background-color: var(--secondary);
            color: var(--accent);
            padding: 20px;
            font-size: 0.9rem;
            text-align: center;
        }

        /* Cookie Banner */
        .cookie-banner {
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            background-color: var(--secondary);
            color: var(--accent);
            padding: 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            z-index: 1500;
        }

        .cookie-banner p {
            margin-right: 20px;
        }

        .cookie-btn {
            background-color: var(--primary);
            color: var(--accent);
            border: none;
            padding: 10px 20px;
            cursor: pointer;
            white-space: nowrap;
        }

        /* Footer */
        footer {
            background-color: var(--secondary);
            color: var(--accent);
            padding: 50px 0 20px;
        }

        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
        }

        .footer-section h3 {
            font-size: 1.2rem;
            margin-bottom: 20px;
            text-transform: uppercase;
            position: relative;
        }

        .footer-section h3::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 50px;
            height: 2px;
            background-color: var(--primary);
        }

        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 10px;
        }

        .footer-links a {
            color: var(--accent);
            text-decoration: none;
            transition: color 0.3s;
        }

        .footer-links a:hover {
            color: var(--primary);
        }

        .footer-bottom {
            text-align: center;
            padding-top: 30px;
            margin-top: 30px;
            border-top: 1px solid var(--gray);
        }

        /* Адаптивность */
        @media (max-width: 768px) {
            .burger {
                display: flex;
            }

            .nav-menu {
                position: fixed;
                top: 80px;
                right: -100%;
                width: 100%;
                height: calc(100vh - 80px);
                background-color: var(--primary);
                flex-direction: column;
                align-items: center;
                justify-content: center;
                transition: right 0.5s ease;
            }

            .nav-menu.active {
                right: 0;
            }

            .nav-menu li {
                margin: 20px 0;
            }

            .hero h1 {
                font-size: 2.5rem;
            }

            .hero p {
                font-size: 1.2rem;
            }

            .footer-container {
                grid-template-columns: 1fr;
            }
        }

