/* CSS стили */
        /* Общие стили */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial', sans-serif;
        }
        
        body {
            background-color: #0f0f1e;
            color: #ffffff;
            overflow-x: hidden;
        }
        
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        /* Header стили */
        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            background-color: rgba(15, 15, 30, 0.9);
            backdrop-filter: blur(10px);
            z-index: 1000;
            padding: 15px 0;
            box-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
        }
        
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .logo {
            font-size: 24px;
            font-weight: bold;
            color: #ff6ec7;
            text-decoration: none;
            text-transform: uppercase;
            letter-spacing: 2px;
            text-shadow: 0 0 10px rgba(255, 110, 199, 0.7);
        }
        
        .nav {
            display: flex;
            list-style: none;
        }
        
        .nav li {
            margin-left: 30px;
        }
        
        .nav a {
            color: #ffffff;
            text-decoration: none;
            font-size: 16px;
            transition: all 0.3s ease;
            position: relative;
        }
        
        .nav a:hover {
            color: #ff6ec7;
        }
        
        .nav a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background-color: #ff6ec7;
            transition: width 0.3s ease;
        }
        
        .nav a:hover::after {
            width: 100%;
        }
        
        .burger {
            display: none;
            flex-direction: column;
            cursor: pointer;
        }
        
        .burger span {
            width: 25px;
            height: 3px;
            background-color: #ffffff;
            margin: 3px 0;
            transition: all 0.3s ease;
        }
        
        /* Hero секция */
        .hero {
            height: 100vh;
            background: linear-gradient(rgba(15, 15, 30, 0.7), rgba(15, 15, 30, 0.7)), url('../img/03.webp');
            background-size: cover;
            background-position: center;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        
        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle at 20% 50%, rgba(120, 119, 198, 0.3), transparent 50%),
                        radial-gradient(circle at 80% 20%, rgba(255, 119, 198, 0.3), transparent 50%),
                        radial-gradient(circle at 40% 80%, rgba(120, 219, 255, 0.3), transparent 50%);
            z-index: 1;
        }
        
        .hero-content {
            position: relative;
            z-index: 2;
            max-width: 800px;
            padding: 0 20px;
            animation: fadeInUp 1s ease;
        }
        
        .hero h1 {
            font-size: 60px;
            margin-bottom: 20px;
            color: #ff6ec7;
            text-shadow: 0 0 20px rgba(255, 110, 199, 0.5);
            letter-spacing: 2px;
        }
        
        .hero p {
            font-size: 20px;
            margin-bottom: 30px;
            color: #ffffff;
        }
        
        .btn {
            display: inline-block;
            padding: 15px 35px;
            background-color: #ff6ec7;
            color: #ffffff;
            text-decoration: none;
            border-radius: 30px;
            font-size: 18px;
            font-weight: bold;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: all 0.3s ease;
            box-shadow: 0 5px 15px rgba(255, 110, 199, 0.4);
        }
        
        .btn:hover {
            background-color: #ff4fb0;
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(255, 110, 199, 0.6);
        }
        
        /* About секция */
        .about {
            padding: 100px 0;
            background-color: #15152a;
            position: relative;
        }
        
        .about::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('../img/17.webp');
            background-size: cover;
            background-position: center;
            opacity: 0.1;
            z-index: 0;
        }
        
        .section-title {
            font-size: 40px;
            text-align: center;
            margin-bottom: 50px;
            color: #ff6ec7;
            position: relative;
            z-index: 1;
        }
        
        .about-content {
            display: flex;
            align-items: center;
            justify-content: space-between;
            position: relative;
            z-index: 1;
        }
        
        .about-text {
            flex: 1;
            padding-right: 50px;
        }
        
        .about-text p {
            font-size: 18px;
            line-height: 1.6;
            margin-bottom: 20px;
            color: #e0e0e0;
        }
        
        .about-image {
            flex: 1;
            height: 400px;
            background: url('../img/13.webp');
            background-size: cover;
            background-position: center;
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
            position: relative;
            overflow: hidden;
        }
        
        .about-image::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(45deg, rgba(255, 110, 199, 0.3), rgba(120, 219, 255, 0.3));
            z-index: 1;
        }
        
        /* Products секция */
        .products {
            padding: 100px 0;
            background-color: #0f0f1e;
        }
        
        .products-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }
        
        .product-card {
            background-color: #15152a;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
            transition: all 0.3s ease;
        }
        
        .product-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(255, 110, 199, 0.3);
        }
        
        .product-image {
            height: 200px;
            background-size: cover;
            background-position: center;
            position: relative;
        }
        
        .product-image::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to bottom, transparent, rgba(15, 15, 30, 0.8));
            z-index: 1;
        }
        
        .product-content {
            padding: 25px;
        }
        
        .product-title {
            font-size: 24px;
            margin-bottom: 15px;
            color: #ff6ec7;
        }
        
        .product-description {
            font-size: 16px;
            line-height: 1.6;
            color: #e0e0e0;
            margin-bottom: 20px;
        }
        
        /* Prices секция */
        .prices {
            padding: 100px 0;
            background-color: #15152a;
        }
        
        .prices-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }
        
        .price-card {
            background-color: #0f0f1e;
            border-radius: 10px;
            padding: 40px 30px;
            text-align: center;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }
        
        .price-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: linear-gradient(to right, #ff6ec7, #78dbff);
        }
        
        .price-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(255, 110, 199, 0.3);
        }
        
        .price-title {
            font-size: 24px;
            margin-bottom: 20px;
            color: #ff6ec7;
        }
        
        .price-value {
            font-size: 40px;
            font-weight: bold;
            margin-bottom: 20px;
            color: #ffffff;
        }
        
        .price-period {
            font-size: 16px;
            color: #78dbff;
        }
        
        .price-features {
            list-style: none;
            margin: 30px 0;
        }
        
        .price-features li {
            font-size: 16px;
            margin-bottom: 15px;
            color: #e0e0e0;
            position: relative;
            padding-left: 30px;
        }
        
        .price-features li::before {
            content: '✓';
            position: absolute;
            left: 0;
            top: 0;
            color: #78dbff;
            font-weight: bold;
        }
        
        /* Gallery секция */
        .gallery {
            padding: 100px 0;
            background-color: #0f0f1e;
        }
        
        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
        }
        
        .gallery-item {
            height: 250px;
            background-size: cover;
            background-position: center;
            border-radius: 10px;
            overflow: hidden;
            position: relative;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .gallery-item:hover {
            transform: scale(1.05);
        }
        
        .gallery-item::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to bottom, transparent, rgba(15, 15, 30, 0.8));
            opacity: 0;
            transition: opacity 0.3s ease;
            z-index: 1;
        }
        
        .gallery-item:hover::before {
            opacity: 1;
        }
        
        /* Feedback секция */
        .feedback {
            padding: 100px 0;
            background-color: #15152a;
        }
        
        .feedback-slider {
            position: relative;
            max-width: 800px;
            margin: 0 auto;
            overflow: hidden;
        }
        
        .feedback-container {
            display: flex;
            transition: transform 0.5s ease;
        }
        
        .feedback-item {
            min-width: 100%;
            padding: 30px;
            background-color: #0f0f1e;
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
        }
        
        .feedback-text {
            font-size: 18px;
            line-height: 1.6;
            color: #e0e0e0;
            margin-bottom: 20px;
            font-style: italic;
        }
        
        .feedback-author {
            display: flex;
            align-items: center;
        }
        
        .feedback-avatar {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background-size: cover;
            background-position: center;
            margin-right: 15px;
            border: 2px solid #ff6ec7;
        }
        
        .feedback-info h4 {
            font-size: 18px;
            margin-bottom: 5px;
            color: #ffffff;
        }
        
        .feedback-info p {
            font-size: 14px;
            color: #78dbff;
        }
        
        .feedback-controls {
            display: flex;
            justify-content: center;
            margin-top: 30px;
        }
        
        .feedback-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background-color: #444;
            margin: 0 5px;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .feedback-dot.active {
            background-color: #ff6ec7;
            transform: scale(1.2);
        }
        
        /* FAQ секция */
        .faq {
            padding: 100px 0;
            background-color: #0f0f1e;
        }
        
        .faq-container {
            max-width: 800px;
            margin: 0 auto;
        }
        
        .faq-item {
            background-color: #15152a;
            border-radius: 10px;
            margin-bottom: 15px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
        }
        
        .faq-question {
            padding: 20px;
            font-size: 18px;
            color: #ffffff;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: all 0.3s ease;
        }
        
        .faq-question:hover {
            background-color: #1a1a3a;
        }
        
        .faq-question::after {
            content: '+';
            font-size: 24px;
            color: #ff6ec7;
            transition: all 0.3s ease;
        }
        
        .faq-item.active .faq-question::after {
            content: '-';
        }
        
        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease;
        }
        
        .faq-item.active .faq-answer {
            max-height: 300px;
        }
        
        .faq-answer-content {
            padding: 0 20px 20px;
            font-size: 16px;
            line-height: 1.6;
            color: #e0e0e0;
        }
        
        /* Contact форма */
        .contact {
            padding: 100px 0;
            background-color: #15152a;
        }
        
        .contact-form {
            max-width: 600px;
            margin: 0 auto;
            background-color: #0f0f1e;
            padding: 40px;
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
        }
        
        .form-group {
            margin-bottom: 25px;
        }
        
        .form-group label {
            display: block;
            font-size: 16px;
            margin-bottom: 10px;
            color: #ff6ec7;
        }
        
        .form-control {
            width: 100%;
            padding: 15px;
            background-color: #15152a;
            border: 1px solid #333;
            border-radius: 5px;
            color: #ffffff;
            font-size: 16px;
            transition: all 0.3s ease;
        }
        
        .form-control:focus {
            outline: none;
            border-color: #ff6ec7;
            box-shadow: 0 0 10px rgba(255, 110, 199, 0.3);
        }
        
        .btn-submit {
            width: 100%;
            padding: 15px;
            background-color: #ff6ec7;
            color: #ffffff;
            border: none;
            border-radius: 5px;
            font-size: 18px;
            font-weight: bold;
            text-transform: uppercase;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .btn-submit:hover {
            background-color: #ff4fb0;
        }
        
        /* Modal */
        .modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.8);
            z-index: 2000;
            align-items: center;
            justify-content: center;
        }
        
        .modal-content {
            background-color: #15152a;
            padding: 40px;
            border-radius: 10px;
            text-align: center;
            max-width: 500px;
            position: relative;
        }
        
        .modal-close {
            position: absolute;
            top: 15px;
            right: 15px;
            font-size: 24px;
            color: #ffffff;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .modal-close:hover {
            color: #ff6ec7;
        }
        
        .modal h3 {
            font-size: 24px;
            margin-bottom: 20px;
            color: #ff6ec7;
        }
        
        .modal p {
            font-size: 16px;
            line-height: 1.6;
            color: #e0e0e0;
        }
        
        /* Disclaimer */
        .disclaimer {
            padding: 30px 0;
            background-color: #0f0f1e;
            text-align: center;
        }
        
        .disclaimer p {
            font-size: 14px;
            color: #888;
            max-width: 800px;
            margin: 0 auto;
        }
        
        /* Footer */
        footer {
            padding: 50px 0;
            background-color: #15152a;
        }
        
        .footer-content {
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
        }
        
        .footer-column {
            flex: 1;
            min-width: 250px;
            margin-bottom: 30px;
        }
        
        .footer-column h4 {
            font-size: 18px;
            margin-bottom: 20px;
            color: #ff6ec7;
        }
        
        .footer-links {
            list-style: none;
        }
        
        .footer-links li {
            margin-bottom: 10px;
        }
        
        .footer-links a {
            color: #e0e0e0;
            text-decoration: none;
            transition: all 0.3s ease;
        }
        
        .footer-links a:hover {
            color: #ff6ec7;
        }
        
        .footer-contact p {
            font-size: 16px;
            margin-bottom: 10px;
            color: #e0e0e0;
        }
        
        .copyright {
            text-align: center;
            padding-top: 30px;
            margin-top: 30px;
            border-top: 1px solid #333;
            font-size: 14px;
            color: #888;
        }
        
        /* Cookie баннер */
        .cookie-banner {
            position: fixed;
            bottom: 20px;
            left: 20px;
            right: 20px;
            background-color: #15152a;
            border-radius: 10px;
            padding: 20px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
            z-index: 3000;
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            transform: translateY(150%);
            transition: transform 0.5s ease;
        }
        
        .cookie-banner.show {
            transform: translateY(0);
        }
        
        .cookie-text {
            flex: 1;
            min-width: 250px;
            margin-right: 20px;
        }
        
        .cookie-text p {
            font-size: 14px;
            color: #e0e0e0;
            margin-bottom: 0;
        }
        
        .cookie-text a {
            color: #78dbff;
            text-decoration: none;
        }
        
        .cookie-buttons {
            display: flex;
            gap: 10px;
        }
        
        .cookie-btn {
            padding: 10px 20px;
            background-color: #ff6ec7;
            color: #ffffff;
            border: none;
            border-radius: 5px;
            font-size: 14px;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .cookie-btn:hover {
            background-color: #ff4fb0;
        }
        
        .cookie-btn.reject {
            background-color: transparent;
            border: 1px solid #ff6ec7;
        }
        
        .cookie-btn.reject:hover {
            background-color: rgba(255, 110, 199, 0.1);
        }
        
        /* Анимации */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .fade-in {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.8s ease;
        }
        
        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }
        
        /* Адаптивность */
        @media (max-width: 992px) {
            .about-content {
                flex-direction: column;
            }
            
            .about-text {
                padding-right: 0;
                margin-bottom: 30px;
            }
            
            .about-image {
                width: 100%;
            }
        }
        
        @media (max-width: 768px) {
            .nav {
                position: fixed;
                top: 0;
                right: -100%;
                width: 70%;
                height: 100vh;
                background-color: rgba(15, 15, 30, 0.95);
                flex-direction: column;
                justify-content: center;
                align-items: center;
                transition: right 0.5s ease;
            }
            
            .nav.active {
                right: 0;
            }
            
            .nav li {
                margin: 15px 0;
            }
            
            .nav a {
                font-size: 20px;
            }
            
            .burger {
                display: flex;
            }
            
            .burger.active span:nth-child(1) {
                transform: rotate(45deg) translate(5px, 5px);
            }
            
            .burger.active span:nth-child(2) {
                opacity: 0;
            }
            
            .burger.active span:nth-child(3) {
                transform: rotate(-45deg) translate(7px, -6px);
            }
            
            .hero h1 {
                font-size: 40px;
            }
            
            .hero p {
                font-size: 18px;
            }
            
            .section-title {
                font-size: 30px;
            }
            
            .cookie-banner {
                flex-direction: column;
                align-items: flex-start;
            }
            
            .cookie-text {
                margin-right: 0;
                margin-bottom: 15px;
            }
        }

