/* Основные стили */
        :root {
            --primary: #d50000;
            --secondary: #212121;
            --accent: #757575;
            --light: #f5f5f5;
            --dark: #000000;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Roboto', Arial, sans-serif;
        }
        
        body {
            background-color: var(--light);
            color: var(--secondary);
            line-height: 1.6;
            padding-top: 80px;
        }
        
        .container {
            width: 100%;
            padding: 0 15px;
            margin: 0 auto;
        }
        
        h1, h2, h3, h4 {
            font-weight: 700;
            margin-bottom: 20px;
            text-transform: uppercase;
        }
        
        h1 {
            font-size: 2.5rem;
            color: var(--primary);
        }
        
        h2 {
            font-size: 2rem;
            border-left: 5px solid var(--primary);
            padding-left: 15px;
            margin-bottom: 30px;
        }
        
        h3 {
            font-size: 1.5rem;
            color: var(--secondary);
        }
        
        p {
            margin-bottom: 15px;
        }
        
        a {
            color: var(--primary);
            text-decoration: none;
            transition: all 0.3s ease;
        }
        
        a:hover {
            color: var(--secondary);
        }
        
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        
        .btn {
            display: inline-block;
            background-color: var(--primary);
            color: white;
            padding: 12px 30px;
            border: none;
            cursor: pointer;
            font-weight: 700;
            text-transform: uppercase;
            transition: all 0.3s ease;
            text-align: center;
        }
        
        .btn:hover {
            background-color: var(--secondary);
            color: white;
        }
        
        section {
            padding: 60px 0;
        }
        
        /* Хэдер */
        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            background-color: var(--secondary);
            color: white;
            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;
            padding: 15px;
        }
        
        .logo {
            font-size: 1.5rem;
            font-weight: 900;
            color: white;
            text-transform: uppercase;
        }
        
        .logo span {
            color: var(--primary);
        }
        
        .nav-menu {
            display: flex;
            list-style: none;
        }
        
        .nav-menu li {
            margin-left: 20px;
        }
        
        .nav-menu a {
            color: white;
            font-weight: 500;
        }
        
        .nav-menu a:hover {
            color: var(--primary);
        }
        
        .burger {
            display: none;
            cursor: pointer;
        }
        
        .burger div {
            width: 25px;
            height: 3px;
            background-color: white;
            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://plus.unsplash.com/premium_photo-1675731118661-15dc54c11130?q=80&w=627&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D');
            background-size: cover;
            background-position: center;
            color: white;
            text-align: center;
            padding: 100px 0;
            position: relative;
        }
        
        .hero-content {
            max-width: 800px;
            margin: 0 auto;
        }
        
        .hero h1 {
            font-size: 3rem;
            margin-bottom: 20px;
            color: white;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
        }
        
        .hero p {
            font-size: 1.2rem;
            margin-bottom: 30px;
        }
        
        /* About секция */
        .about {
            background-color: white;
        }
        
        .about-content {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 30px;
        }
        
        .about-text {
            flex: 1;
            min-width: 300px;
        }
        
        .about-image {
            flex: 1;
            min-width: 300px;
        }
        
        /* Products секция */
        .products {
            background-color: #f9f9f9;
        }
        
        .product-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 30px;
        }
        
        .product-card {
            background: white;
            padding: 20px;
            border-radius: 5px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease;
        }
        
        .product-card:hover {
            transform: translateY(-10px);
        }
        
        .product-card img {
            width: 100%;
            height: 200px;
            object-fit: cover;
            margin-bottom: 15px;
        }
        
        /* Prices секция */
        .prices {
            background-color: white;
        }
        
        .price-cards {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            justify-content: center;
        }
        
        .price-card {
            background: var(--light);
            border: 2px solid var(--primary);
            padding: 30px;
            text-align: center;
            flex: 1;
            min-width: 250px;
            max-width: 350px;
        }
        
        .price-card h3 {
            color: var(--primary);
        }
        
        .price {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--secondary);
            margin: 20px 0;
        }
        
        .price-features {
            list-style: none;
            margin-bottom: 20px;
        }
        
        .price-features li {
            padding: 5px 0;
            border-bottom: 1px solid #eee;
        }
        
        /* Gallery секция */
        .gallery {
            background-color: #f9f9f9;
        }
        
        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 15px;
        }
        
        .gallery-item {
            height: 250px;
            overflow: hidden;
            position: relative;
        }
        
        .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: white;
        }
        
        .slider {
            position: relative;
            overflow: hidden;
            height: 300px;
        }
        
        .slides {
            display: flex;
            width: 400%;
            transition: all 0.5s ease;
        }
        
        .slide {
            width: 25%;
            padding: 20px;
            background: var(--light);
            margin: 0 10px;
            border-radius: 5px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }
        
        .slide-content {
            display: flex;
            flex-direction: column;
            height: 100%;
        }
        
        .client-info {
            display: flex;
            align-items: center;
            margin-top: auto;
        }
        
        .client-info img {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            margin-right: 15px;
        }
        
        .slider-nav {
            text-align: center;
            margin-top: 20px;
        }
        
        .slider-dot {
            display: inline-block;
            width: 12px;
            height: 12px;
            background: var(--accent);
            border-radius: 50%;
            margin: 0 5px;
            cursor: pointer;
        }
        
        .slider-dot.active {
            background: var(--primary);
        }
        
        /* FAQ секция */
        .faq {
            background-color: #f9f9f9;
        }
        
        .accordion {
            margin-bottom: 20px;
            border: 1px solid #ddd;
        }
        
        .accordion-header {
            background: var(--secondary);
            color: white;
            padding: 15px;
            cursor: pointer;
            position: relative;
        }
        
        .accordion-header::after {
            content: '+';
            position: absolute;
            right: 15px;
            top: 50%;
            transform: translateY(-50%);
            font-size: 1.5rem;
        }
        
        .accordion-header.active::after {
            content: '-';
        }
        
        .accordion-content {
            padding: 0;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease, padding 0.3s ease;
            background: white;
        }
        
        .accordion-content.active {
            padding: 15px;
            max-height: 1000px;
        }
        
        /* Contact секция */
        .contact {
            background-color: white;
        }
        
        .contact-form {
            max-width: 600px;
            margin: 0 auto;
        }
        
        .form-group {
            margin-bottom: 20px;
        }
        
        .form-group label {
            display: block;
            margin-bottom: 5px;
            font-weight: 500;
        }
        
        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 12px;
            border: 1px solid #ddd;
            border-radius: 5px;
        }
        
        .form-group textarea {
            min-height: 150px;
        }
        
        /* Disclaimer */
        .disclaimer {
            background-color: var(--secondary);
            color: white;
            padding: 30px 0;
            font-size: 0.9rem;
        }
        
        /* Cookie Banner */
        .cookie-banner {
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            background: var(--secondary);
            color: white;
            padding: 15px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            z-index: 1000;
            transform: translateY(100%);
            transition: transform 0.5s ease;
        }
        
        .cookie-banner.active {
            transform: translateY(0);
        }
        
        .cookie-banner p {
            margin-bottom: 0;
            margin-right: 15px;
        }
        
        .cookie-banner button {
            background: var(--primary);
            color: white;
            border: none;
            padding: 8px 15px;
            cursor: pointer;
            white-space: nowrap;
        }
        
        /* Footer */
        footer {
            background-color: var(--dark);
            color: white;
            padding: 40px 0 20px;
        }
        
        .footer-content {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            margin-bottom: 30px;
        }
        
        .footer-section {
            flex: 1;
            min-width: 250px;
            margin-bottom: 20px;
        }
        
        .footer-section h3 {
            color: var(--primary);
            margin-bottom: 20px;
            border-bottom: 2px solid var(--primary);
            padding-bottom: 10px;
        }
        
        .footer-links {
            list-style: none;
        }
        
        .footer-links li {
            margin-bottom: 10px;
        }
        
        .footer-links a {
            color: white;
        }
        
        .footer-links a:hover {
            color: var(--primary);
        }
        
        .footer-bottom {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }
        
        /* Popup */
        .popup {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.7);
            display: flex;
            justify-content: center;
            align-items: center;
            z-index: 2000;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
        }
        
        .popup.active {
            opacity: 1;
            visibility: visible;
        }
        
        .popup-content {
            background: white;
            padding: 30px;
            border-radius: 5px;
            text-align: center;
            max-width: 500px;
            width: 90%;
        }
        
        .popup h3 {
            color: var(--primary);
            margin-bottom: 15px;
        }
        
        .popup-close {
            position: absolute;
            top: 10px;
            right: 10px;
            background: none;
            border: none;
            font-size: 1.5rem;
            cursor: pointer;
        }
        
        /* Адаптивность */
        @media screen and (max-width: 768px) {
            body {
                padding-top: 70px;
            }
            
            .nav-menu {
                position: fixed;
                top: 70px;
                right: -100%;
                height: calc(100vh - 70px);
                width: 100%;
                flex-direction: column;
                background: var(--secondary);
                transition: right 0.5s ease;
                padding: 20px;
            }
            
            .nav-menu.active {
                right: 0;
            }
            
            .nav-menu li {
                margin: 15px 0;
            }
            
            .burger {
                display: block;
            }
            
            .burger.active div:nth-child(1) {
                transform: rotate(-45deg) translate(-5px, 6px);
            }
            
            .burger.active div:nth-child(2) {
                opacity: 0;
            }
            
            .burger.active div:nth-child(3) {
                transform: rotate(45deg) translate(-5px, -6px);
            }
            
            h1 {
                font-size: 2rem;
            }
            
            h2 {
                font-size: 1.5rem;
            }
            
            .hero h1 {
                font-size: 2.2rem;
            }
            
            .hero p {
                font-size: 1rem;
            }
            
            .price-cards {
                flex-direction: column;
                align-items: center;
            }
            
            .price-card {
                width: 100%;
            }
            
            .footer-content {
                flex-direction: column;
            }
        }

