/* CSS стили */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial', sans-serif;
        }

        body {
            background-color: #0a192f;
            color: #ffffff;
            line-height: 1.6;
            overflow-x: hidden;
        }

        /* Header */
        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            background-color: rgba(10, 25, 47, 0.95);
            z-index: 1000;
            padding: 1rem 5%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: all 0.3s ease;
        }

        .logo {
            font-size: 1.8rem;
            font-weight: bold;
            color: #64ffda;
            text-decoration: none;
            letter-spacing: 1px;
        }

        nav ul {
            display: flex;
            list-style: none;
        }

        nav ul li {
            margin-left: 2rem;
        }

        nav ul li a {
            color: #ffffff;
            text-decoration: none;
            font-size: 1rem;
            transition: color 0.3s ease;
        }

        nav ul li a:hover {
            color: #64ffda;
        }

        .burger {
            display: none;
            cursor: pointer;
        }

        .burger div {
            width: 25px;
            height: 3px;
            background-color: #ffffff;
            margin: 5px 0;
            transition: all 0.3s ease;
        }

        /* Hero Section */
        .hero {
            height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            padding: 0 5%;
            background-image: linear-gradient(rgba(10, 25, 47, 0.7), rgba(10, 25, 47, 0.9)), url('../img/12.webp');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
        }

        .hero-content {
            max-width: 800px;
        }

        .hero h1 {
            font-size: 3.5rem;
            margin-bottom: 1rem;
            color: #ffffff;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
        }

        .hero p {
            font-size: 1.2rem;
            margin-bottom: 2rem;
            color: #8892b0;
        }

        .btn {
            display: inline-block;
            padding: 12px 30px;
            background-color: #64ffda;
            color: #0a192f;
            text-decoration: none;
            border-radius: 5px;
            font-weight: bold;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
            font-size: 1rem;
        }

        .btn:hover {
            background-color: #4fd1b7;
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
        }

        /* About Section */
        .about {
            padding: 5rem 5%;
            background-color: #0a192f;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .section-title {
            text-align: center;
            margin-bottom: 3rem;
        }

        .section-title h2 {
            font-size: 2.5rem;
            color: #ffffff;
            margin-bottom: 1rem;
            position: relative;
            display: inline-block;
        }

        .section-title h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 50px;
            height: 3px;
            background-color: #64ffda;
        }

        .about-content {
            display: flex;
            align-items: center;
            gap: 3rem;
        }

        .about-text {
            flex: 1;
        }

        .about-text h3 {
            font-size: 1.8rem;
            margin-bottom: 1rem;
            color: #64ffda;
        }

        .about-text p {
            margin-bottom: 1.5rem;
            color: #8892b0;
        }

        .about-image {
            flex: 1;
            text-align: center;
        }

        .about-image img {
            max-width: 100%;
            border-radius: 10px;
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
        }

        /* Products Section */
        .products {
            padding: 5rem 5%;
            background-color: #112240;
        }

        .products-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        .product-card {
            background-color: #0a192f;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
            transition: transform 0.3s ease;
        }

        .product-card:hover {
            transform: translateY(-10px);
        }

        .product-image {
            height: 200px;
            overflow: hidden;
        }

        .product-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .product-card:hover .product-image img {
            transform: scale(1.1);
        }

        .product-info {
            padding: 1.5rem;
        }

        .product-info h3 {
            font-size: 1.5rem;
            margin-bottom: 0.5rem;
            color: #64ffda;
        }

        .product-info p {
            color: #8892b0;
            margin-bottom: 1rem;
        }

        /* Prices Section */
        .prices {
            padding: 5rem 5%;
            background-color: #0a192f;
        }

        .prices-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        .price-card {
            background-color: #112240;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
            transition: transform 0.3s ease;
            text-align: center;
            padding: 2rem;
        }

        .price-card:hover {
            transform: translateY(-10px);
        }

        .price-card h3 {
            font-size: 1.8rem;
            margin-bottom: 1rem;
            color: #64ffda;
        }

        .price-card .price {
            font-size: 2.5rem;
            font-weight: bold;
            margin-bottom: 1rem;
            color: #ffffff;
        }

        .price-card .price span {
            font-size: 1rem;
            color: #8892b0;
        }

        .price-card ul {
            list-style: none;
            margin-bottom: 2rem;
        }

        .price-card ul li {
            padding: 0.5rem 0;
            color: #8892b0;
        }

        /* Gallery Section */
        .gallery {
            padding: 5rem 5%;
            background-color: #112240;
        }

        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 1rem;
            margin-top: 3rem;
        }

        .gallery-item {
            height: 250px;
            overflow: hidden;
            border-radius: 10px;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
            transition: transform 0.3s ease;
        }

        .gallery-item:hover {
            transform: scale(1.03);
        }

        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        /* Feedback Section */
        .feedback {
            padding: 5rem 5%;
            background-color: #0a192f;
        }

        .feedback-slider {
            position: relative;
            max-width: 800px;
            margin: 3rem auto 0;
            overflow: hidden;
        }

        .feedback-slide {
            display: none;
            text-align: center;
            padding: 2rem;
            background-color: #112240;
            border-radius: 10px;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
        }

        .feedback-slide.active {
            display: block;
        }

        .feedback-slide p {
            font-style: italic;
            margin-bottom: 1.5rem;
            color: #8892b0;
            font-size: 1.1rem;
        }

        .feedback-slide h4 {
            font-size: 1.2rem;
            color: #64ffda;
        }

        .feedback-nav {
            display: flex;
            justify-content: center;
            margin-top: 2rem;
        }

        .feedback-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background-color: #8892b0;
            margin: 0 5px;
            cursor: pointer;
            transition: background-color 0.3s ease;
        }

        .feedback-dot.active {
            background-color: #64ffda;
        }

        /* FAQ Section */
        .faq {
            padding: 5rem 5%;
            background-color: #112240;
        }

        .faq-container {
            max-width: 800px;
            margin: 0 auto;
        }

        .faq-item {
            margin-bottom: 1.5rem;
            background-color: #0a192f;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }

        .faq-question {
            padding: 1.5rem;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: background-color 0.3s ease;
        }

        .faq-question:hover {
            background-color: rgba(100, 255, 218, 0.1);
        }

        .faq-question h3 {
            font-size: 1.2rem;
            color: #ffffff;
        }

        .faq-icon {
            font-size: 1.5rem;
            color: #64ffda;
            transition: transform 0.3s ease;
        }

        .faq-answer {
            padding: 0 1.5rem;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease, padding 0.3s ease;
        }

        .faq-item.active .faq-answer {
            padding: 0 1.5rem 1.5rem;
            max-height: 500px;
        }

        .faq-item.active .faq-icon {
            transform: rotate(45deg);
        }

        .faq-answer p {
            color: #8892b0;
        }

        /* Contact Form */
        .contact {
            padding: 5rem 5%;
            background-color: #0a192f;
        }

        .contact-form {
            max-width: 600px;
            margin: 0 auto;
            background-color: #112240;
            padding: 2rem;
            border-radius: 10px;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
        }

        .form-group {
            margin-bottom: 1.5rem;
        }

        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            color: #64ffda;
        }

        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 12px;
            background-color: #0a192f;
            border: 1px solid #8892b0;
            border-radius: 5px;
            color: #ffffff;
            font-size: 1rem;
            transition: border-color 0.3s ease;
        }

        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: #64ffda;
        }

        /* Disclaimer */
        .disclaimer {
            background-color: #112240;
            padding: 2rem 5%;
            text-align: center;
            color: #8892b0;
            font-size: 0.9rem;
        }

        /* Footer */
        footer {
            background-color: #0a192f;
            padding: 3rem 5%;
            border-top: 1px solid #112240;
        }

        .footer-content {
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
            max-width: 1200px;
            margin: 0 auto;
        }

        .footer-logo {
            flex: 1;
            min-width: 250px;
            margin-bottom: 2rem;
        }

        .footer-logo h3 {
            font-size: 1.8rem;
            color: #64ffda;
            margin-bottom: 1rem;
        }

        .footer-logo p {
            color: #8892b0;
        }

        .footer-links {
            flex: 1;
            min-width: 250px;
            margin-bottom: 2rem;
        }

        .footer-links h4 {
            font-size: 1.2rem;
            color: #ffffff;
            margin-bottom: 1rem;
        }

        .footer-links ul {
            list-style: none;
        }

        .footer-links ul li {
            margin-bottom: 0.5rem;
        }

        .footer-links ul li a {
            color: #8892b0;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-links ul li a:hover {
            color: #64ffda;
        }

        .footer-contact {
            flex: 1;
            min-width: 250px;
            margin-bottom: 2rem;
        }

        .footer-contact h4 {
            font-size: 1.2rem;
            color: #ffffff;
            margin-bottom: 1rem;
        }

        .footer-contact p {
            color: #8892b0;
            margin-bottom: 0.5rem;
        }

        .footer-bottom {
            text-align: center;
            margin-top: 2rem;
            padding-top: 2rem;
            border-top: 1px solid #112240;
            color: #8892b0;
        }

        /* Cookie Banner */
        .cookie-banner {
            position: fixed;
            bottom: 20px;
            left: 20px;
            right: 20px;
            background-color: #112240;
            border-radius: 10px;
            padding: 1.5rem;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
            display: flex;
            justify-content: space-between;
            align-items: center;
            z-index: 1000;
            transform: translateY(150%);
            transition: transform 0.5s ease;
        }

        .cookie-banner.show {
            transform: translateY(0);
        }

        .cookie-text {
            flex: 1;
            color: #8892b0;
            margin-right: 1rem;
        }

        .cookie-text a {
            color: #64ffda;
            text-decoration: none;
        }

        .cookie-buttons {
            display: flex;
            gap: 1rem;
        }

        /* Popup */
        .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: 2000;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
        }

        .popup.show {
            opacity: 1;
            visibility: visible;
        }

        .popup-content {
            background-color: #112240;
            padding: 2rem;
            border-radius: 10px;
            text-align: center;
            max-width: 500px;
            width: 90%;
            transform: scale(0.7);
            transition: transform 0.3s ease;
        }

        .popup.show .popup-content {
            transform: scale(1);
        }

        .popup-content h3 {
            font-size: 1.8rem;
            color: #64ffda;
            margin-bottom: 1rem;
        }

        .popup-content p {
            color: #8892b0;
            margin-bottom: 1.5rem;
        }

        /* Responsive */
        @media (max-width: 992px) {
            .about-content {
                flex-direction: column;
            }
        }

        @media (max-width: 768px) {
            nav ul {
                position: fixed;
                top: 70px;
                left: 0;
                width: 100%;
                background-color: rgba(10, 25, 47, 0.95);
                flex-direction: column;
                align-items: center;
                padding: 2rem 0;
                transform: translateY(-150%);
                transition: transform 0.3s ease;
            }

            nav ul.show {
                transform: translateY(0);
            }

            nav ul li {
                margin: 1rem 0;
            }

            .burger {
                display: block;
            }

            .hero h1 {
                font-size: 2.5rem;
            }

            .hero p {
                font-size: 1rem;
            }

            .footer-content {
                flex-direction: column;
            }

            .cookie-banner {
                flex-direction: column;
                text-align: center;
            }

            .cookie-text {
                margin-right: 0;
                margin-bottom: 1rem;
            }
        }

        @media (max-width: 576px) {
            .hero h1 {
                font-size: 2rem;
            }

            .section-title h2 {
                font-size: 2rem;
            }

            .about-text h3 {
                font-size: 1.5rem;
            }

            .price-card .price {
                font-size: 2rem;
            }
        }

