/* CSS стили */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial', sans-serif;
        }
        
        body {
            background-color: #0a0a1a;
            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(10, 10, 26, 0.9);
            backdrop-filter: blur(10px);
            z-index: 1000;
            padding: 15px 0;
            box-shadow: 0 4px 20px rgba(255, 20, 147, 0.3);
        }
        
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .logo {
            font-size: 24px;
            font-weight: bold;
            color: #FF1493;
            text-decoration: none;
            letter-spacing: 2px;
            text-transform: uppercase;
            background: linear-gradient(45deg, #FF1493, #C0C0C0);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }
        
        .nav-menu {
            display: flex;
            list-style: none;
        }
        
        .nav-menu li {
            margin-left: 30px;
        }
        
        .nav-menu a {
            color: #ffffff;
            text-decoration: none;
            font-size: 16px;
            transition: color 0.3s;
        }
        
        .nav-menu a:hover {
            color: #FF1493;
        }
        
        .burger {
            display: none;
            cursor: pointer;
        }
        
        .burger span {
            display: block;
            width: 25px;
            height: 3px;
            margin: 5px 0;
            background-color: #ffffff;
            transition: all 0.3s ease-in-out;
        }
        
        /* Hero Section */
        .hero {
            height: 100vh;
            background: linear-gradient(rgba(10, 10, 26, 0.7), rgba(10, 10, 26, 0.7)), url('../img/05.webp');
            background-size: cover;
            background-position: center;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        
        .hero-content {
            max-width: 800px;
            padding: 0 20px;
            z-index: 2;
        }
        
        .hero h1 {
            font-size: 60px;
            margin-bottom: 20px;
            background: linear-gradient(45deg, #FF1493, #C0C0C0);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            text-transform: uppercase;
            letter-spacing: 3px;
        }
        
        .hero p {
            font-size: 20px;
            margin-bottom: 30px;
            line-height: 1.6;
        }
        
        .btn {
            display: inline-block;
            padding: 15px 35px;
            background: linear-gradient(45deg, #4B0082, #00008B);
            color: #ffffff;
            text-decoration: none;
            border-radius: 30px;
            font-size: 18px;
            font-weight: bold;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: all 0.3s;
            border: none;
            cursor: pointer;
            box-shadow: 0 4px 15px rgba(255, 20, 147, 0.4);
        }
        
        .btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 7px 20px rgba(255, 20, 147, 0.6);
        }
        
        /* About Section */
        .about {
            padding: 100px 0;
            background-color: #0f0f2a;
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 60px;
        }
        
        .section-title h2 {
            font-size: 40px;
            margin-bottom: 15px;
            color: #FF1493;
            text-transform: uppercase;
            letter-spacing: 2px;
        }
        
        .section-title p {
            font-size: 18px;
            color: #C0C0C0;
            max-width: 700px;
            margin: 0 auto;
        }
        
        .about-content {
            display: flex;
            align-items: center;
            gap: 50px;
        }
        
        .about-text {
            flex: 1;
        }
        
        .about-text h3 {
            font-size: 30px;
            margin-bottom: 20px;
            color: #C0C0C0;
        }
        
        .about-text p {
            font-size: 16px;
            line-height: 1.8;
            margin-bottom: 20px;
            color: #ffffff;
        }
        
        .about-image {
            flex: 1;
            position: relative;
            overflow: hidden;
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        }
        
        .about-image img {
            width: 100%;
            height: auto;
            display: block;
            transition: transform 0.5s;
        }
        
        .about-image:hover img {
            transform: scale(1.05);
        }
        
        /* Products Section */
        .products {
            padding: 100px 0;
            background-color: #0a0a1a;
        }
        
        .products-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }
        
        .product-card {
            background-color: #0f0f2a;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
            transition: transform 0.3s, box-shadow 0.3s;
        }
        
        .product-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(255, 20, 147, 0.3);
        }
        
        .product-image {
            height: 200px;
            overflow: hidden;
        }
        
        .product-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s;
        }
        
        .product-card:hover .product-image img {
            transform: scale(1.1);
        }
        
        .product-info {
            padding: 25px;
        }
        
        .product-info h3 {
            font-size: 22px;
            margin-bottom: 15px;
            color: #FF1493;
        }
        
        .product-info p {
            font-size: 16px;
            line-height: 1.6;
            color: #ffffff;
            margin-bottom: 20px;
        }
        
        /* Prices Section */
        .prices {
            padding: 100px 0;
            background-color: #0f0f2a;
        }
        
        .prices-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }
        
        .price-card {
            background-color: #0a0a1a;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
            text-align: center;
            transition: transform 0.3s, box-shadow 0.3s;
            position: relative;
        }
        
        .price-card.featured {
            transform: scale(1.05);
            box-shadow: 0 15px 40px rgba(255, 20, 147, 0.4);
        }
        
        .price-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(255, 20, 147, 0.4);
        }
        
        .price-card.featured:hover {
            transform: scale(1.05) translateY(-10px);
        }
        
        .price-header {
            padding: 30px 20px;
            background: linear-gradient(45deg, #4B0082, #00008B);
        }
        
        .price-card.featured .price-header {
            background: linear-gradient(45deg, #FF1493, #C0C0C0);
        }
        
        .price-title {
            font-size: 24px;
            margin-bottom: 10px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        .price-value {
            font-size: 50px;
            font-weight: bold;
            margin-bottom: 10px;
        }
        
        .price-period {
            font-size: 16px;
            color: rgba(255, 255, 255, 0.7);
        }
        
        .price-features {
            padding: 30px 20px;
        }
        
        .price-feature {
            margin-bottom: 15px;
            font-size: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .price-feature:before {
            content: "✓";
            color: #FF1493;
            margin-right: 10px;
            font-weight: bold;
        }
        
        .price-card.featured .price-feature:before {
            color: #4B0082;
        }
        
        .price-footer {
            padding: 0 20px 30px;
        }
        
        /* Gallery Section */
        .gallery {
            padding: 100px 0;
            background-color: #0a0a1a;
        }
        
        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
        }
        
        .gallery-item {
            position: relative;
            overflow: hidden;
            border-radius: 10px;
            height: 250px;
            cursor: pointer;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        }
        
        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s;
        }
        
        .gallery-item:hover img {
            transform: scale(1.1);
        }
        
        .gallery-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(rgba(75, 0, 130, 0.7), rgba(0, 0, 139, 0.7));
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: opacity 0.3s;
        }
        
        .gallery-item:hover .gallery-overlay {
            opacity: 1;
        }
        
        .gallery-text {
            text-align: center;
            padding: 0 20px;
        }
        
        .gallery-text h3 {
            font-size: 22px;
            margin-bottom: 10px;
            color: #ffffff;
        }
        
        .gallery-text p {
            font-size: 16px;
            color: rgba(255, 255, 255, 0.8);
        }
        
        /* Feedback Section */
        .feedback {
            padding: 100px 0;
            background-color: #0f0f2a;
        }
        
        .feedback-slider {
            position: relative;
            max-width: 800px;
            margin: 0 auto;
            overflow: hidden;
        }
        
        .feedback-container {
            display: flex;
            transition: transform 0.5s ease-in-out;
        }
        
        .feedback-item {
            min-width: 100%;
            padding: 30px;
            background-color: #0a0a1a;
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        }
        
        .feedback-text {
            font-size: 18px;
            line-height: 1.8;
            margin-bottom: 30px;
            font-style: italic;
            color: #ffffff;
            position: relative;
        }
        
        .feedback-text:before {
            content: "";
            font-size: 80px;
            color: rgba(255, 20, 147, 0.2);
            position: absolute;
            top: -30px;
            left: -20px;
        }
        
        .feedback-author {
            display: flex;
            align-items: center;
        }
        
        .author-avatar {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            overflow: hidden;
            margin-right: 20px;
            border: 3px solid #FF1493;
        }
        
        .author-avatar img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .author-info h4 {
            font-size: 18px;
            margin-bottom: 5px;
            color: #FF1493;
        }
        
        .author-info p {
            font-size: 14px;
            color: #C0C0C0;
        }
        
        .feedback-controls {
            display: flex;
            justify-content: center;
            margin-top: 30px;
        }
        
        .feedback-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background-color: rgba(255, 255, 255, 0.3);
            margin: 0 5px;
            cursor: pointer;
            transition: background-color 0.3s;
        }
        
        .feedback-dot.active {
            background-color: #FF1493;
        }
        
        /* FAQ Section */
        .faq {
            padding: 100px 0;
            background-color: #0a0a1a;
        }
        
        .faq-container {
            max-width: 800px;
            margin: 0 auto;
        }
        
        .faq-item {
            background-color: #0f0f2a;
            border-radius: 10px;
            margin-bottom: 20px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        }
        
        .faq-question {
            padding: 20px;
            font-size: 18px;
            font-weight: bold;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            color: #ffffff;
            transition: background-color 0.3s;
        }
        
        .faq-question:hover {
            background-color: rgba(255, 20, 147, 0.1);
        }
        
        .faq-question:after {
            content: "+";
            font-size: 24px;
            color: #FF1493;
            transition: transform 0.3s;
        }
        
        .faq-item.active .faq-question:after {
            transform: rotate(45deg);
        }
        
        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease-out;
            background-color: rgba(10, 10, 26, 0.5);
        }
        
        .faq-item.active .faq-answer {
            max-height: 500px;
        }
        
        .faq-answer-content {
            padding: 20px;
            font-size: 16px;
            line-height: 1.8;
            color: #ffffff;
        }
        
        /* Contact Form */
        .contact {
            padding: 100px 0;
            background-color: #0f0f2a;
        }
        
        .contact-form {
            max-width: 600px;
            margin: 0 auto;
            background-color: #0a0a1a;
            padding: 40px;
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        }
        
        .form-group {
            margin-bottom: 25px;
        }
        
        .form-group label {
            display: block;
            margin-bottom: 10px;
            font-size: 16px;
            color: #C0C0C0;
        }
        
        .form-control {
            width: 100%;
            padding: 15px;
            background-color: #0f0f2a;
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 5px;
            color: #ffffff;
            font-size: 16px;
            transition: border-color 0.3s, box-shadow 0.3s;
        }
        
        .form-control:focus {
            outline: none;
            border-color: #FF1493;
            box-shadow: 0 0 0 3px rgba(255, 20, 147, 0.2);
        }
        
        /* Footer */
        footer {
            background-color: #0a0a1a;
            padding: 50px 0 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }
        
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }
        
        .footer-column h3 {
            font-size: 20px;
            margin-bottom: 20px;
            color: #FF1493;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        .footer-links {
            list-style: none;
        }
        
        .footer-links li {
            margin-bottom: 10px;
        }
        
        .footer-links a {
            color: #ffffff;
            text-decoration: none;
            font-size: 16px;
            transition: color 0.3s;
        }
        
        .footer-links a:hover {
            color: #FF1493;
        }
        
        .contact-info p {
            margin-bottom: 10px;
            font-size: 16px;
            color: #ffffff;
        }
        
        .contact-info i {
            color: #FF1493;
            margin-right: 10px;
        }
        
        .footer-bottom {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }
        
        .footer-bottom p {
            font-size: 14px;
            color: rgba(255, 255, 255, 0.7);
        }
        
        /* Disclaimer */
        .disclaimer {
            background-color: rgba(10, 10, 26, 0.9);
            padding: 20px;
            text-align: center;
            font-size: 14px;
            color: rgba(255, 255, 255, 0.7);
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }
        
        /* Cookie Banner */
        .cookie-banner {
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            background-color: rgba(10, 10, 26, 0.95);
            backdrop-filter: blur(10px);
            padding: 20px;
            box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.3);
            z-index: 1000;
            transform: translateY(100%);
            transition: transform 0.3s ease-out;
        }
        
        .cookie-banner.show {
            transform: translateY(0);
        }
        
        .cookie-content {
            display: flex;
            align-items: center;
            justify-content: space-between;
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .cookie-text {
            flex: 1;
            padding-right: 20px;
        }
        
        .cookie-text p {
            font-size: 16px;
            line-height: 1.6;
            color: #ffffff;
            margin-bottom: 0;
        }
        
        .cookie-text a {
            color: #FF1493;
            text-decoration: none;
        }
        
        .cookie-buttons {
            display: flex;
            gap: 15px;
        }
        
        .cookie-btn {
            padding: 10px 20px;
            border-radius: 5px;
            font-size: 16px;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s;
            border: none;
        }
        
        .cookie-accept {
            background-color: #FF1493;
            color: #ffffff;
        }
        
        .cookie-accept:hover {
            background-color: #e01380;
        }
        
        .cookie-reject {
            background-color: transparent;
            color: #ffffff;
            border: 1px solid #ffffff;
        }
        
        .cookie-reject:hover {
            background-color: rgba(255, 255, 255, 0.1);
        }
        
        /* 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.show {
            display: flex;
        }
        
        .modal-content {
            background-color: #0f0f2a;
            border-radius: 10px;
            padding: 40px;
            max-width: 500px;
            width: 90%;
            text-align: center;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
            position: relative;
        }
        
        .modal-close {
            position: absolute;
            top: 15px;
            right: 15px;
            font-size: 24px;
            color: #ffffff;
            cursor: pointer;
            transition: color 0.3s;
        }
        
        .modal-close:hover {
            color: #FF1493;
        }
        
        .modal-icon {
            font-size: 50px;
            color: #FF1493;
            margin-bottom: 20px;
        }
        
        .modal h3 {
            font-size: 24px;
            margin-bottom: 15px;
            color: #ffffff;
        }
        
        .modal p {
            font-size: 16px;
            line-height: 1.6;
            color: rgba(255, 255, 255, 0.8);
            margin-bottom: 30px;
        }
        
        /* Responsive */
        @media (max-width: 992px) {
            .hero h1 {
                font-size: 50px;
            }
            
            .about-content {
                flex-direction: column;
            }
            
            .about-image {
                margin-bottom: 30px;
            }
        }
        
        @media (max-width: 768px) {
            .nav-menu {
                position: fixed;
                top: 0;
                right: -100%;
                width: 70%;
                height: 100vh;
                background-color: rgba(10, 10, 26, 0.95);
                backdrop-filter: blur(10px);
                flex-direction: column;
                align-items: center;
                justify-content: center;
                transition: right 0.3s ease-out;
            }
            
            .nav-menu.active {
                right: 0;
            }
            
            .nav-menu li {
                margin: 15px 0;
            }
            
            .nav-menu a {
                font-size: 20px;
            }
            
            .burger {
                display: block;
                z-index: 1001;
            }
            
            .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 h2 {
                font-size: 30px;
            }
            
            .cookie-content {
                flex-direction: column;
            }
            
            .cookie-text {
                padding-right: 0;
                margin-bottom: 20px;
            }
        }
        
        @media (max-width: 576px) {
            .hero h1 {
                font-size: 30px;
            }
            
            .hero p {
                font-size: 16px;
            }
            
            .section-title h2 {
                font-size: 24px;
            }
            
            .price-value {
                font-size: 40px;
            }
            
            .feedback-text {
                font-size: 16px;
            }
        }

