@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700&family=Roboto+Mono:wght@400;700&display=swap');

        :root {
            --primary-color: #3f51b5; /* Royal Blue */
            --secondary-color: #f5f5f5; /* Light Gray */
            --accent-color: #ff5722; /* Deep Orange */
            --dark-color: #212121; /* Charcoal */
            --text-color: #424242; /* Dark Gray */
            --light-text-color: #fafafa; /* Off-White */
            --background-color: #ffffff; /* White */
            --font-main: 'Montserrat', sans-serif;
            --font-mono: 'Roboto Mono', monospace;
        }

        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: var(--font-main);
            line-height: 1.6;
            background-color: var(--background-color);
            color: var(--text-color);
            overflow-x: hidden;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            background-color: var(--dark-color);
            color: var(--light-text-color);
            padding: 1rem 0;
            z-index: 1000;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
        }

        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-family: var(--font-mono);
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--accent-color);
            text-decoration: none;
        }

        .nav-menu {
            list-style: none;
            display: flex;
            gap: 20px;
        }

        .nav-menu a {
            color: var(--light-text-color);
            text-decoration: none;
            font-weight: 600;
            transition: color 0.3s ease;
        }

        .nav-menu a:hover {
            color: var(--accent-color);
        }

        .burger-menu {
            display: none;
            cursor: pointer;
            flex-direction: column;
            gap: 5px;
        }

        .burger-menu div {
            width: 25px;
            height: 3px;
            background-color: var(--light-text-color);
            transition: all 0.3s ease;
        }

        .burger-menu.active .line1 {
            transform: rotate(-45deg) translate(-5px, 6px);
        }

        .burger-menu.active .line2 {
            opacity: 0;
        }

        .burger-menu.active .line3 {
            transform: rotate(45deg) translate(-5px, -6px);
        }

        @media (max-width: 768px) {
            .nav-menu {
                position: fixed;
                top: 0;
                right: -100%;
                width: 70%;
                height: 100%;
                background-color: var(--dark-color);
                flex-direction: column;
                justify-content: center;
                align-items: center;
                transition: right 0.5s ease-in-out;
            }

            .nav-menu.active {
                right: 0;
            }

            .nav-menu a {
                font-size: 1.5rem;
                padding: 15px 0;
            }

            .burger-menu {
                display: flex;
            }
        }

        main {
            padding-top: 80px;
        }

        section {
            padding: 80px 0;
            position: relative;
        }

        h1, h2, h3 {
            font-family: var(--font-mono);
            color: var(--primary-color);
            text-transform: uppercase;
        }
        
        h1 {
            font-size: 3rem;
            margin-bottom: 1rem;
            color: var(--light-text-color);
        }

        h2 {
            font-size: 2.5rem;
            text-align: center;
            margin-bottom: 2rem;
        }

        h3 {
            font-size: 1.5rem;
            margin-bottom: 1rem;
        }

        .hero {
            position: relative;
            height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: var(--light-text-color);
            background-image: url('../img/07.webp');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.6);
        }

        .hero-content {
            position: relative;
            z-index: 10;
        }

        .hero p {
            font-size: 1.2rem;
            max-width: 600px;
            margin: 0 auto 2rem;
        }
        
        .cta-button {
            display: inline-block;
            background-color: var(--accent-color);
            color: var(--light-text-color);
            text-transform: uppercase;
            font-weight: 700;
            padding: 15px 30px;
            text-decoration: none;
            border-radius: 5px;
            transition: background-color 0.3s ease;
        }
        
        .cta-button:hover {
            background-color: #e64a19;
        }

        .about .container,
        .products .container,
        .prices .container,
        .gallery .container,
        .feedback .container,
        .faq .container {
            opacity: 0;
            transform: translateY(50px);
            transition: opacity 1s ease, transform 1s ease;
        }

        .about .container.visible,
        .products .container.visible,
        .prices .container.visible,
        .gallery .container.visible,
        .feedback .container.visible,
        .faq .container.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .about-content,
        .products-grid,
        .price-cards,
        .feedback-slider-inner,
        .faq-items {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            justify-content: center;
            text-align: center;
        }

        .about-text {
            max-width: 800px;
            margin: 0 auto;
            text-align: center;
        }

        .product-card {
            background-color: var(--secondary-color);
            padding: 20px;
            border-radius: 10px;
            flex: 1 1 300px;
            box-shadow: 0 4px 8px 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;
            border-radius: 8px;
            margin-bottom: 1rem;
        }

        .price-card {
            background-color: var(--dark-color);
            color: var(--light-text-color);
            padding: 30px;
            border-radius: 10px;
            flex: 1 1 300px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
            position: relative;
            overflow: hidden;
        }

        .price-card::before {
            content: '';
            position: absolute;
            top: -20px;
            left: -20px;
            width: 80px;
            height: 80px;
            background-color: var(--accent-color);
            transform: rotate(45deg);
        }

        .price-card h3 {
            color: var(--accent-color);
        }

        .price-card ul {
            list-style: none;
            margin-bottom: 20px;
        }

        .price-card ul li {
            margin-bottom: 10px;
            position: relative;
            padding-left: 20px;
        }

        .price-card ul li::before {
            content: '✔';
            color: var(--accent-color);
            position: absolute;
            left: 0;
        }

        .price-card .price {
            font-size: 2rem;
            font-weight: 700;
            color: var(--light-text-color);
            margin: 20px 0;
        }

        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 15px;
        }

        .gallery-grid img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 8px;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .gallery-grid img:hover {
            transform: scale(1.05);
            box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
        }
        
        .feedback-slider-container {
            position: relative;
            overflow: hidden;
            width: 100%;
        }
        
        .feedback-slider-inner {
            display: flex;
            transition: transform 0.5s ease-in-out;
        }
        
        .feedback-card {
            min-width: 100%;
            padding: 20px;
            background-color: var(--secondary-color);
            border-radius: 10px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
            margin: 0 10px;
            text-align: center;
        }

        .slider-nav {
            text-align: center;
            margin-top: 20px;
        }
        
        .slider-nav button {
            background-color: var(--primary-color);
            border: none;
            color: var(--light-text-color);
            padding: 10px 15px;
            cursor: pointer;
            border-radius: 5px;
            transition: background-color 0.3s ease;
        }
        
        .slider-nav button:hover {
            background-color: var(--accent-color);
        }

        .faq-item {
            background-color: var(--secondary-color);
            border-radius: 10px;
            margin-bottom: 10px;
            overflow: hidden;
            max-width: 800px;
            margin: 0 auto 10px;
        }

        .faq-question {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 20px;
            cursor: pointer;
            background-color: #eee;
            font-weight: 600;
        }

        .faq-question::after {
            content: '+';
            font-size: 1.5rem;
            transition: transform 0.3s ease;
        }

        .faq-question.active::after {
            transform: rotate(45deg);
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease-out;
            padding: 0 20px;
        }

        .faq-answer p {
            padding: 20px 0;
        }

        .contact-form-section {
            background-color: var(--secondary-color);
            padding: 80px 0;
        }

        .contact-form-content {
            max-width: 600px;
            margin: 0 auto;
        }

        .contact-form label {
            display: block;
            margin-bottom: 5px;
            font-weight: 600;
        }

        .contact-form input[type="text"],
        .contact-form input[type="email"],
        .contact-form input[type="tel"] {
            width: 100%;
            padding: 10px;
            margin-bottom: 15px;
            border: 1px solid #ccc;
            border-radius: 5px;
            font-family: var(--font-main);
        }

        .contact-form button {
            background-color: var(--primary-color);
            color: var(--light-text-color);
            padding: 15px 30px;
            border: none;
            border-radius: 5px;
            cursor: pointer;
            font-weight: 700;
            transition: background-color 0.3s ease;
            width: 100%;
        }
        
        .contact-form button:hover {
            background-color: var(--accent-color);
        }

        .disclaimer {
            background-color: var(--dark-color);
            color: var(--secondary-color);
            text-align: center;
            padding: 20px;
            font-size: 0.8rem;
        }

        footer {
            background-color: var(--primary-color);
            color: var(--light-text-color);
            padding: 40px 0;
        }

        .footer-content {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            flex-wrap: wrap;
            gap: 20px;
        }

        .footer-logo {
            font-family: var(--font-mono);
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--accent-color);
            text-decoration: none;
            margin-bottom: 10px;
            display: block;
        }

        .footer-section {
            flex: 1 1 200px;
        }

        .footer-section h4 {
            font-size: 1.2rem;
            margin-bottom: 15px;
            color: var(--accent-color);
        }

        .footer-links, .footer-contacts {
            list-style: none;
        }

        .footer-links a {
            color: var(--light-text-color);
            text-decoration: none;
            transition: color 0.3s ease;
        }
        
        .footer-links a:hover {
            color: var(--accent-color);
        }

        .footer-contacts p {
            margin-bottom: 5px;
        }

        @media (max-width: 768px) {
            .footer-content {
                flex-direction: column;
                text-align: center;
            }
            .footer-section {
                margin-bottom: 20px;
            }
        }
        
        .cookie-banner {
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            background-color: var(--dark-color);
            color: var(--light-text-color);
            padding: 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            z-index: 1001;
            box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
            animation: fadeIn 0.5s ease-in-out;
        }

        .cookie-banner p {
            margin: 0;
            flex-grow: 1;
        }

        .cookie-banner a {
            color: var(--accent-color);
            text-decoration: underline;
            margin-left: 5px;
        }

        .cookie-buttons {
            display: flex;
            gap: 10px;
            margin-left: 20px;
        }

        .cookie-buttons button {
            background-color: var(--accent-color);
            color: var(--light-text-color);
            border: none;
            padding: 10px 20px;
            border-radius: 5px;
            cursor: pointer;
            transition: background-color 0.3s ease;
        }
        
        .cookie-buttons button:hover {
            background-color: #e64a19;
        }
        
        .popup {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.7);
            display: none;
            align-items: center;
            justify-content: center;
            z-index: 2000;
        }

        .popup-content {
            background: var(--background-color);
            padding: 40px;
            border-radius: 10px;
            text-align: center;
            max-width: 400px;
            position: relative;
        }

        .popup-content h3 {
            color: var(--primary-color);
        }

        .close-popup {
            position: absolute;
            top: 10px;
            right: 10px;
            font-size: 1.5rem;
            cursor: pointer;
            color: #999;
        }

        /* Анимации */
        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }

