* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Arial', sans-serif;
            background-color: #1A1A2E;
            color: #F8F9FA;
            line-height: 1.6;
            overflow-x: hidden;
        }

        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        a {
            color: #FFD700;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        a:hover {
            color: #00CED1;
        }

        h1, h2, h3, h4 {
            margin-bottom: 20px;
            line-height: 1.2;
        }

        h1 {
            font-size: 2.5rem;
        }

        h2 {
            font-size: 2rem;
            text-align: center;
            margin-bottom: 40px;
            color: #FFD700;
        }

        h3 {
            font-size: 1.5rem;
        }

        p {
            margin-bottom: 15px;
        }

        .btn {
            display: inline-block;
            background-color: #6B46C1;
            color: #F8F9FA;
            padding: 12px 24px;
            border-radius: 30px;
            font-weight: bold;
            text-align: center;
            cursor: pointer;
            transition: all 0.3s ease;
            border: none;
        }

        .btn:hover {
            background-color: #00CED1;
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0, 206, 209, 0.3);
        }

        .header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            background-color: rgba(26, 26, 46, 0.95);
            backdrop-filter: blur(10px);
            z-index: 1000;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
        }

        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
        }

        .logo {
            font-size: 1.8rem;
            font-weight: bold;
            color: #FFD700;
            text-transform: uppercase;
            letter-spacing: 2px;
        }

        .nav-list {
            display: flex;
            list-style: none;
        }

        .nav-link {
            color: #F8F9FA;
            padding: 8px 15px;
            margin: 0 5px;
            border-radius: 20px;
            transition: all 0.3s ease;
        }

        .nav-link:hover {
            background-color: #6B46C1;
            color: #FFD700;
        }

        .burger {
            display: none;
            flex-direction: column;
            justify-content: space-between;
            width: 30px;
            height: 21px;
            cursor: pointer;
            background: none;
            border: none;
        }

        .burger span {
            height: 3px;
            width: 100%;
            background-color: #F8F9FA;
            border-radius: 3px;
            transition: all 0.3s ease;
        }

        .hero {
            padding: 150px 0 80px;
            background: linear-gradient(135deg, rgba(26, 26, 46, 0.9), rgba(107, 70, 193, 0.7)), url('../img/02.webp') no-repeat center center/cover;
            min-height: 100vh;
            display: flex;
            align-items: center;
        }

        .hero-content {
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .hero-text {
            flex: 1;
            max-width: 600px;
        }

        .hero-image {
            flex: 1;
            text-align: center;
        }

        .hero-image img {
            max-width: 100%;
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        }

        .about {
            padding: 80px 0;
            background-color: rgba(107, 70, 193, 0.1);
        }

        .about-content {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 40px;
        }

        .about-text {
            flex: 1;
        }

        .about-image {
            flex: 1;
        }

        .about-image img {
            max-width: 100%;
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        }

        .products {
            padding: 80px 0;
        }

        .products-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }

        .product-card {
            background-color: rgba(255, 255, 255, 0.05);
            border-radius: 10px;
            padding: 25px;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .product-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(107, 70, 193, 0.3);
        }

        .product-image {
            margin-bottom: 20px;
            text-align: center;
        }

        .product-image img {
            max-width: 100%;
            border-radius: 8px;
        }

        .product-card ul {
            list-style: none;
            margin-top: 15px;
        }

        .product-card ul li {
            padding: 5px 0;
            padding-left: 20px;
            position: relative;
        }

        .product-card ul li:before {
            content: "✓";
            position: absolute;
            left: 0;
            color: #FFD700;
        }

        .prices {
            padding: 80px 0;
            background-color: rgba(107, 70, 193, 0.1);
        }

        .prices-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
        }

        .price-card {
            background-color: rgba(255, 255, 255, 0.05);
            border-radius: 10px;
            padding: 30px;
            text-align: center;
            position: relative;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .price-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(107, 70, 193, 0.3);
        }

        .price-card.popular {
            border: 2px solid #FFD700;
        }

        .popular-label {
            position: absolute;
            top: -12px;
            left: 50%;
            transform: translateX(-50%);
            background-color: #FFD700;
            color: #1A1A2E;
            padding: 5px 15px;
            border-radius: 20px;
            font-size: 0.9rem;
            font-weight: bold;
        }

        .price {
            font-size: 2.5rem;
            color: #FFD700;
            margin: 20px 0;
        }

        .price-card ul {
            list-style: none;
            margin-bottom: 30px;
            text-align: left;
        }

        .price-card ul li {
            padding: 10px 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

        .gallery {
            padding: 80px 0;
        }

        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
        }

        .gallery-item {
            overflow: hidden;
            border-radius: 10px;
            height: 250px;
            transition: transform 0.3s ease;
        }

        .gallery-item:hover {
            transform: scale(1.05);
        }

        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .feedback {
            padding: 80px 0;
            background-color: rgba(107, 70, 193, 0.1);
        }

        .feedback-slider {
            position: relative;
            overflow: hidden;
            margin-bottom: 30px;
        }

        .feedback-item {
            display: none;
            background-color: rgba(255, 255, 255, 0.05);
            border-radius: 10px;
            padding: 30px;
            margin-bottom: 20px;
        }

        .feedback-item.active {
            display: block;
        }

        .feedback-content {
            font-style: italic;
            margin-bottom: 20px;
            font-size: 1.1rem;
        }

        .feedback-author {
            display: flex;
            align-items: center;
        }

        .author-avatar {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            overflow: hidden;
            margin-right: 15px;
        }

        .author-avatar img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .rating {
            color: #FFD700;
        }

        .slider-controls {
            display: flex;
            justify-content: center;
            gap: 20px;
        }

        .prev-btn, .next-btn {
            background-color: #6B46C1;
            color: #F8F9FA;
            border: none;
            padding: 10px 20px;
            border-radius: 20px;
            cursor: pointer;
            transition: background-color 0.3s ease;
        }

        .prev-btn:hover, .next-btn:hover {
            background-color: #00CED1;
        }

        .faq {
            padding: 80px 0;
        }

        .faq-item {
            background-color: rgba(255, 255, 255, 0.05);
            border-radius: 10px;
            margin-bottom: 15px;
            overflow: hidden;
        }

        .faq-question {
            padding: 20px;
            cursor: pointer;
            position: relative;
            transition: background-color 0.3s ease;
        }

        .faq-question:hover {
            background-color: rgba(107, 70, 193, 0.2);
        }

        .faq-question:after {
            content: "+";
            position: absolute;
            right: 20px;
            top: 50%;
            transform: translateY(-50%);
            font-size: 1.5rem;
        }

        .faq-item.active .faq-question:after {
            content: "-";
        }

        .faq-answer {
            padding: 0 20px;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease, padding 0.3s ease;
        }

        .faq-item.active .faq-answer {
            padding: 0 20px 20px;
            max-height: 500px;
        }

        .contact-form {
            padding: 80px 0;
            background-color: rgba(107, 70, 193, 0.1);
        }

        .form {
            max-width: 600px;
            margin: 0 auto;
        }

        .form-group {
            margin-bottom: 20px;
        }

        .form-group label {
            display: block;
            margin-bottom: 8px;
            color: #FFD700;
        }

        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 12px;
            background-color: rgba(255, 255, 255, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 5px;
            color: #F8F9FA;
            font-family: inherit;
        }

        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: #FFD700;
            box-shadow: 0 0 0 2px rgba(255, 215, 0, 0.2);
        }

        .disclaimer {
            background-color: rgba(0, 0, 0, 0.3);
            padding: 20px 0;
            font-size: 0.9rem;
            text-align: center;
        }

        .footer {
            background-color: #0a0a1a;
            padding: 50px 0 20px;
        }

        .footer-content {
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
            margin-bottom: 30px;
        }

        .footer-logo {
            font-size: 1.5rem;
            font-weight: bold;
            color: #FFD700;
            margin-bottom: 20px;
        }

        .footer-links ul {
            list-style: none;
        }

        .footer-links ul li {
            margin-bottom: 10px;
        }

        .footer-contacts p {
            margin-bottom: 10px;
        }

        .footer-bottom {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }

        .cookie-banner {
            position: fixed;
            bottom: 20px;
            left: 20px;
            right: 20px;
            background-color: rgba(26, 26, 46, 0.95);
            border: 1px solid rgba(255, 215, 0, 0.3);
            border-radius: 10px;
            padding: 20px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
            z-index: 1001;
            display: flex;
            align-items: center;
            justify-content: space-between;
            transform: translateY(150%);
            transition: transform 0.5s ease;
        }

        .cookie-banner.show {
            transform: translateY(0);
        }

        .cookie-content {
            flex: 1;
            margin-right: 20px;
        }

        .cookie-accept {
            white-space: nowrap;
        }

        .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;
            opacity: 0;
            visibility: hidden;
            transition: opacity 0.3s ease, visibility 0.3s ease;
        }

        .popup.show {
            opacity: 1;
            visibility: visible;
        }

        .popup-content {
            background-color: #1A1A2E;
            border: 2px solid #FFD700;
            border-radius: 10px;
            padding: 30px;
            max-width: 500px;
            width: 90%;
            text-align: center;
            position: relative;
            transform: scale(0.7);
            transition: transform 0.3s ease;
        }

        .popup.show .popup-content {
            transform: scale(1);
        }

        .close-popup {
            position: absolute;
            top: 10px;
            right: 10px;
            font-size: 1.5rem;
            cursor: pointer;
            color: #F8F9FA;
        }

        @media (max-width: 992px) {
            .hero-content {
                flex-direction: column;
                text-align: center;
            }
            
            .hero-text {
                margin-bottom: 30px;
            }
            
            .about-content {
                flex-direction: column;
            }
            
            .about-text {
                margin-bottom: 30px;
            }
        }

        @media (max-width: 768px) {
            .nav-list {
                position: fixed;
                top: 70px;
                left: 0;
                width: 100%;
                background-color: rgba(26, 26, 46, 0.95);
                flex-direction: column;
                align-items: center;
                padding: 20px 0;
                transform: translateY(-150%);
                transition: transform 0.3s ease;
                z-index: 999;
            }
            
            .nav-list.active {
                transform: translateY(0);
            }
            
            .nav-link {
                margin: 10px 0;
            }
            
            .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);
            }
            
            h1 {
                font-size: 2rem;
            }
            
            h2 {
                font-size: 1.5rem;
            }
            
            .footer-content {
                flex-direction: column;
            }
            
            .footer-links, .footer-contacts {
                margin-top: 20px;
            }
            
            .cookie-banner {
                flex-direction: column;
                text-align: center;
            }
            
            .cookie-content {
                margin-right: 0;
                margin-bottom: 15px;
            }
        }

