@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700&family=Roboto:wght@400;700&display=swap');
        
        :root {
            --primary-color: #2c3e50;
            --secondary-color: #f39c12;
            --accent-color: #e74c3c;
            --text-color: #ecf0f1;
            --bg-color: #1c2a38;
            --bg-light: #2c3e50;
            --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Montserrat', sans-serif;
            scroll-behavior: smooth;
        }

        body {
            background-color: var(--bg-color);
            color: var(--text-color);
            line-height: 1.6;
            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(--bg-light);
            box-shadow: var(--shadow);
            z-index: 1000;
            padding: 1rem 0;
        }

        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-family: 'Roboto', sans-serif;
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--secondary-color);
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .logo:hover {
            color: var(--accent-color);
        }

        .nav-links {
            list-style: none;
            display: flex;
            gap: 20px;
        }

        .nav-links a {
            color: var(--text-color);
            text-decoration: none;
            font-weight: 700;
            transition: color 0.3s ease;
        }

        .nav-links a:hover {
            color: var(--secondary-color);
        }

        .burger-menu {
            display: none;
            flex-direction: column;
            cursor: pointer;
        }

        .burger-menu div {
            width: 25px;
            height: 3px;
            background-color: var(--text-color);
            margin: 4px 0;
            transition: transform 0.3s ease, opacity 0.3s ease;
        }
        
        .nav-active {
            transform: translateX(0) !important;
        }

        @media (max-width: 768px) {
            .nav-links {
                position: fixed;
                right: 0;
                top: 80px;
                height: calc(100vh - 80px);
                background-color: var(--bg-light);
                flex-direction: column;
                width: 70%;
                align-items: center;
                transform: translateX(100%);
                transition: transform 0.5s ease-in;
                padding-top: 50px;
                box-shadow: -2px 0 5px rgba(0,0,0,0.5);
            }

            .nav-links a {
                font-size: 1.5rem;
            }

            .burger-menu {
                display: flex;
            }
        }

        section {
            padding: 100px 0;
            opacity: 0;
            transform: translateY(20px);
            transition: opacity 0.6s ease-out, transform 0.6s ease-out;
        }

        section.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .hero {
            position: relative;
            height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            background-size: cover;
            background-position: center;
            background-image: url('../img/01.webp'); 
        }
        
        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.6);
        }

        .hero-content {
            position: relative;
            z-index: 1;
            max-width: 800px;
        }
        
        .hero h1 {
            font-size: 3.5rem;
            margin-bottom: 20px;
            text-shadow: var(--shadow);
            color: var(--secondary-color);
        }

        .hero p {
            font-size: 1.5rem;
            margin-bottom: 30px;
            font-weight: 400;
        }

        .btn {
            background-color: var(--accent-color);
            color: var(--text-color);
            padding: 12px 30px;
            text-decoration: none;
            border-radius: 5px;
            font-weight: 700;
            transition: background-color 0.3s ease;
            border: none;
            cursor: pointer;
        }

        .btn:hover {
            background-color: #c0392b;
        }

        h2 {
            font-size: 2.5rem;
            text-align: center;
            margin-bottom: 50px;
            color: var(--secondary-color);
            position: relative;
        }

        h2::after {
            content: '';
            display: block;
            width: 80px;
            height: 4px;
            background-color: var(--accent-color);
            margin: 10px auto 0;
        }

        .about-grid, .products-grid, .prices-grid, .gallery-grid, .feedback-slider, .faq-item {
            display: grid;
            gap: 30px;
            padding: 0 20px;
        }

        .about-grid {
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            align-items: center;
        }

        .about-text h3 {
            font-size: 1.8rem;
            margin-bottom: 20px;
        }
        
        .about-image img {
            width: 100%;
            height: auto;
            border-radius: 10px;
            box-shadow: var(--shadow);
        }

        .products-grid {
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        }

        .product-card {
            background-color: var(--bg-light);
            border-radius: 10px;
            overflow: hidden;
            box-shadow: var(--shadow);
            text-align: center;
            padding-bottom: 20px;
        }

        .product-card img {
            width: 100%;
            height: 200px;
            object-fit: cover;
        }
        
        .product-card h3 {
            margin: 20px 0 10px;
            color: var(--secondary-color);
        }
        
        .prices-grid {
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            text-align: center;
        }
        
        .price-card {
            background-color: var(--bg-light);
            padding: 30px;
            border-radius: 10px;
            box-shadow: var(--shadow);
            border: 2px solid transparent;
            transition: all 0.3s ease;
        }

        .price-card:hover {
            border-color: var(--secondary-color);
            transform: translateY(-10px);
        }

        .price-card h3 {
            font-size: 1.8rem;
            margin-bottom: 10px;
            color: var(--accent-color);
        }

        .price-card .price {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--secondary-color);
            margin-bottom: 20px;
        }
        
        .price-card ul {
            list-style: none;
            text-align: left;
            margin-bottom: 30px;
        }
        
        .price-card li {
            padding: 8px 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }
        
        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 15px;
        }
        
        .gallery-item img {
            width: 100%;
            height: 200px;
            object-fit: cover;
            border-radius: 8px;
            transition: transform 0.3s ease;
        }
        
        .gallery-item img:hover {
            transform: scale(1.05);
        }

        .feedback-slider {
            position: relative;
            overflow: hidden;
            white-space: nowrap;
            padding: 20px;
        }

        .feedback-slide {
            display: inline-block;
            width: 100%;
            text-align: center;
            padding: 20px;
            background-color: var(--bg-light);
            border-radius: 10px;
            box-shadow: var(--shadow);
            white-space: normal;
        }

        .feedback-slide p {
            font-style: italic;
            margin-bottom: 15px;
        }
        
        .feedback-slide .author {
            font-weight: 700;
            color: var(--secondary-color);
        }
        
        .slider-controls {
            text-align: center;
            margin-top: 20px;
        }
        
        .slider-dot {
            height: 10px;
            width: 10px;
            background-color: var(--secondary-color);
            border-radius: 50%;
            display: inline-block;
            margin: 0 5px;
            cursor: pointer;
            transition: background-color 0.3s ease;
        }

        .slider-dot.active {
            background-color: var(--accent-color);
        }
        
        .faq-item {
            background-color: var(--bg-light);
            border-radius: 10px;
            padding: 20px;
            margin-bottom: 15px;
            cursor: pointer;
        }
        
        .faq-question {
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-weight: 700;
        }
        
        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s ease-out;
        }

        .faq-answer p {
            padding-top: 15px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            margin-top: 15px;
        }
        
        .faq-item.active .faq-answer {
            max-height: 200px; 
            transition: max-height 0.5s ease-in;
        }

        .contact-form {
            background-color: var(--bg-light);
            padding: 40px;
            border-radius: 10px;
            box-shadow: var(--shadow);
            max-width: 600px;
            margin: 0 auto;
        }

        .contact-form h3 {
            text-align: center;
            margin-bottom: 20px;
        }

        .form-group {
            margin-bottom: 15px;
        }
        
        .form-group label {
            display: block;
            margin-bottom: 5px;
        }

        .form-group input {
            width: 100%;
            padding: 10px;
            border: 1px solid var(--text-color);
            border-radius: 5px;
            background-color: transparent;
            color: var(--text-color);
        }

        .disclaimer {
            background-color: var(--bg-light);
            text-align: center;
            padding: 20px;
            font-size: 0.8rem;
        }

        .disclaimer p {
            margin: 0;
        }

        footer {
            background-color: var(--bg-light);
            color: var(--text-color);
            text-align: center;
            padding: 40px 0 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }
        
        .footer-content {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: flex-start;
            text-align: left;
        }

        .footer-logo {
            flex-basis: 100%;
            margin-bottom: 20px;
            font-size: 1.8rem;
            color: var(--secondary-color);
        }
        
        .footer-links, .footer-contacts {
            flex-basis: 45%;
            margin-bottom: 20px;
        }

        .footer-links h4, .footer-contacts h4 {
            margin-bottom: 15px;
        }
        
        .footer-links ul {
            list-style: none;
        }
        
        .footer-links a {
            color: var(--text-color);
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-links a:hover {
            color: var(--secondary-color);
        }

        .footer-contacts p {
            margin: 5px 0;
        }

        .footer-bottom {
            margin-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 20px;
        }
        
        .footer-bottom p {
            margin: 0;
            font-size: 0.8rem;
        }

        @media (max-width: 768px) {
            .footer-links, .footer-contacts {
                flex-basis: 100%;
            }
        }

        .cookie-banner {
            position: fixed;
            bottom: 20px;
            left: 50%;
            transform: translateX(-50%);
            background-color: var(--bg-light);
            color: var(--text-color);
            padding: 20px;
            border-radius: 10px;
            box-shadow: var(--shadow);
            z-index: 1001;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 10px;
        }

        .cookie-banner p {
            margin: 0;
            font-size: 0.9rem;
        }

        .cookie-banner a {
            color: var(--secondary-color);
            text-decoration: underline;
        }

        .cookie-banner .btn {
            padding: 8px 15px;
        }

        .popup {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.7);
            display: flex;
            justify-content: center;
            align-items: center;
            z-index: 1002;
            visibility: hidden;
            opacity: 0;
            transition: visibility 0.3s, opacity 0.3s;
        }

        .popup-content {
            background-color: var(--bg-light);
            color: var(--text-color);
            padding: 40px;
            border-radius: 10px;
            text-align: center;
            max-width: 400px;
            position: relative;
        }

        .popup.visible {
            visibility: visible;
            opacity: 1;
        }
        
        .close-popup {
            position: absolute;
            top: 10px;
            right: 20px;
            font-size: 2rem;
            cursor: pointer;
        }

