/* Базовые стили */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial', sans-serif;
        }
        
        body {
            background-color: #ffffff;
            color: #000000;
            line-height: 1.6;
            padding-top: 80px;
        }
        
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        h1, h2, h3 {
            font-weight: bold;
            text-transform: uppercase;
            margin-bottom: 20px;
            color: #cc0000;
        }
        
        h1 {
            font-size: 2.5rem;
            line-height: 1.2;
        }
        
        h2 {
            font-size: 2rem;
            border-bottom: 2px solid #cc0000;
            padding-bottom: 10px;
            margin-bottom: 30px;
        }
        
        h3 {
            font-size: 1.5rem;
            margin-bottom: 15px;
        }
        
        p {
            margin-bottom: 20px;
        }
        
        a {
            color: #cc0000;
            text-decoration: none;
            transition: color 0.3s;
        }
        
        a:hover {
            color: #000000;
        }
        
        .btn {
            display: inline-block;
            background-color: #cc0000;
            color: #ffffff;
            padding: 12px 30px;
            border: none;
            text-transform: uppercase;
            font-weight: bold;
            cursor: pointer;
            transition: background-color 0.3s;
            text-align: center;
        }
        
        .btn:hover {
            background-color: #990000;
            color: #ffffff;
        }
        
        section {
            padding: 60px 0;
        }
        
        /* Хэдер */
        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            background-color: #ffffff;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            z-index: 1000;
        }
        
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 20px;
        }
        
        .logo {
            font-size: 1.8rem;
            font-weight: bold;
            color: #cc0000;
            text-transform: uppercase;
        }
        
        .nav-menu {
            display: flex;
            list-style: none;
        }
        
        .nav-menu li {
            margin-left: 25px;
        }
        
        .nav-menu a {
            font-weight: bold;
            text-transform: uppercase;
        }
        
        .burger {
            display: none;
            cursor: pointer;
        }
        
        .burger div {
            width: 25px;
            height: 3px;
            background-color: #cc0000;
            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-1578985545062-69928b1d9587?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80') no-repeat center center/cover;
            color: #ffffff;
            text-align: center;
            padding: 120px 0;
        }
        
        .hero h1 {
            font-size: 3rem;
            color: #ffffff;
            margin-bottom: 20px;
        }
        
        .hero p {
            font-size: 1.2rem;
            max-width: 700px;
            margin: 0 auto 30px;
        }
        
        /* О нас */
        .about {
            background-color: #f5f5f5;
        }
        
        .about-content {
            display: flex;
            align-items: center;
            flex-wrap: wrap;
        }
        
        .about-text {
            flex: 1;
            min-width: 300px;
            padding-right: 30px;
        }
        
        .about-image {
            flex: 1;
            min-width: 300px;
        }
        
        .about-image img {
            width: 100%;
            border: 3px solid #cc0000;
        }
        
        /* Продукты */
        .products-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }
        
        .product-card {
            background-color: #f5f5f5;
            padding: 20px;
            border-left: 5px solid #cc0000;
        }
        
        .product-card h3 {
            margin-bottom: 15px;
        }
        
        /* Цены */
        .prices-table {
            width: 100%;
            border-collapse: collapse;
            margin: 30px 0;
        }
        
        .prices-table th, .prices-table td {
            border: 1px solid #ddd;
            padding: 12px;
            text-align: left;
        }
        
        .prices-table th {
            background-color: #cc0000;
            color: #ffffff;
            text-transform: uppercase;
        }
        
        .prices-table tr:nth-child(even) {
            background-color: #f5f5f5;
        }
        
        .discount {
            background-color: #ffcccc !important;
            font-weight: bold;
        }
        
        /* Галерея */
        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 15px;
        }
        
        .gallery-item {
            position: relative;
            overflow: hidden;
            height: 250px;
        }
        
        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s;
        }
        
        .gallery-item:hover img {
            transform: scale(1.1);
        }
        
        /* Отзывы */
        .feedback-slider {
            position: relative;
            overflow: hidden;
            padding: 20px 0;
        }
        
        .feedback-slide {
            background-color: #f5f5f5;
            padding: 30px;
            margin: 0 15px;
            border-left: 5px solid #cc0000;
        }
        
        .client-info {
            display: flex;
            align-items: center;
            margin-top: 20px;
        }
        
        .client-info img {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            object-fit: cover;
            margin-right: 15px;
        }
        
        /* FAQ */
        .faq-item {
            margin-bottom: 20px;
            border-bottom: 1px solid #ddd;
            padding-bottom: 15px;
        }
        
        .faq-question {
            font-weight: bold;
            cursor: pointer;
            position: relative;
            padding-right: 30px;
        }
        
        .faq-question::after {
            content: '+';
            position: absolute;
            right: 0;
            top: 0;
            font-size: 1.2rem;
        }
        
        .faq-answer {
            display: none;
            padding-top: 10px;
        }
        
        .faq-item.active .faq-question::after {
            content: '-';
        }
        
        .faq-item.active .faq-answer {
            display: block;
        }
        
        /* Контактная форма */
        .contact-form {
            max-width: 600px;
            margin: 0 auto;
        }
        
        .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: 1px solid #ddd;
        }
        
        /* Дисклеймер */
        .disclaimer {
            background-color: #f5f5f5;
            padding: 20px;
            font-size: 0.9rem;
            margin-top: 40px;
        }
        
        /* Cookie баннер */
        .cookie-banner {
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            background-color: rgba(0, 0, 0, 0.9);
            color: #ffffff;
            padding: 15px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            z-index: 1001;
        }
        
        .cookie-banner p {
            margin-bottom: 0;
            flex: 1;
            min-width: 250px;
            padding-right: 15px;
        }
        
        .cookie-banner .btn {
            margin-left: 15px;
        }
        
        /* Футер */
        footer {
            background-color: #000000;
            color: #ffffff;
            padding: 40px 0 20px;
        }
        
        .footer-content {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            margin-bottom: 30px;
        }
        
        .footer-column {
            flex: 1;
            min-width: 250px;
            margin-bottom: 30px;
        }
        
        .footer-column h3 {
            color: #ffffff;
            border-bottom: 2px solid #cc0000;
            padding-bottom: 10px;
            margin-bottom: 20px;
        }
        
        .footer-column ul {
            list-style: none;
        }
        
        .footer-column ul li {
            margin-bottom: 10px;
        }
        
        .footer-column a {
            color: #ffffff;
        }
        
        .footer-column a:hover {
            color: #cc0000;
        }
        
        .footer-bottom {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid #333333;
        }
        
        /* Попап */
        .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;
            visibility: hidden;
            opacity: 0;
            transition: opacity 0.3s;
        }
        
        .popup-content {
            background-color: #ffffff;
            padding: 40px;
            text-align: center;
            max-width: 500px;
            width: 90%;
        }
        
        .popup.active {
            visibility: visible;
            opacity: 1;
        }
        
        /* Адаптивность */
        @media screen and (max-width: 768px) {
            body {
                padding-top: 70px;
            }
            
            .nav-menu {
                position: fixed;
                top: 70px;
                right: -100%;
                height: calc(100vh - 70px);
                width: 80%;
                max-width: 300px;
                background-color: #ffffff;
                flex-direction: column;
                align-items: center;
                justify-content: flex-start;
                padding-top: 40px;
                transition: right 0.5s ease;
                box-shadow: -5px 0 10px rgba(0, 0, 0, 0.1);
            }
            
            .nav-menu.active {
                right: 0;
            }
            
            .nav-menu li {
                margin: 15px 0;
            }
            
            .burger {
                display: block;
            }
            
            .hero h1 {
                font-size: 2.2rem;
            }
            
            .about-text, .about-image {
                flex: 100%;
                padding-right: 0;
                margin-bottom: 30px;
            }
            
            .footer-column {
                flex: 100%;
            }
            
            .cookie-banner .btn {
                margin-top: 15px;
                margin-left: 0;
                width: 100%;
            }
        }

