* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial', sans-serif;
        }
        
        body {
            background-color: #0A0E27;
            color: #FFFFFF;
            overflow-x: hidden;
        }
        
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        /* Header Styles */
        header {
            position: fixed;
            top: 0;
            width: 100%;
            background: rgba(10, 14, 39, 0.9);
            backdrop-filter: blur(10px);
            z-index: 1000;
            padding: 15px 0;
            box-shadow: 0 4px 20px rgba(255, 140, 0, 0.3);
        }
        
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .logo {
            font-size: 24px;
            font-weight: bold;
            color: #FF8C00;
            text-decoration: none;
            text-transform: uppercase;
            letter-spacing: 2px;
        }
        
        .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: #00D4FF;
        }
        
        .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;
            background: linear-gradient(135deg, #0A0E27 0%, #1A2151 100%);
            display: flex;
            align-items: center;
            position: relative;
            overflow: hidden;
        }
        
        .hero::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: url('../img/07.webp');
            background-size: cover;
            background-position: center;
            opacity: 0.3;
            z-index: -1;
        }
        
        .hero-content {
            max-width: 600px;
            z-index: 2;
        }
        
        .hero h1 {
            font-size: 48px;
            margin-bottom: 20px;
            color: #FF8C00;
            text-transform: uppercase;
            line-height: 1.2;
        }
        
        .hero p {
            font-size: 18px;
            margin-bottom: 30px;
            color: #FFFFFF;
        }
        
        .btn {
            display: inline-block;
            padding: 12px 30px;
            background: linear-gradient(90deg, #FF8C00, #00D4FF);
            color: #FFFFFF;
            text-decoration: none;
            border-radius: 30px;
            font-weight: bold;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: all 0.3s;
            border: none;
            cursor: pointer;
        }
        
        .btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(255, 140, 0, 0.3);
        }
        
        /* About Section */
        .about {
            padding: 100px 0;
            background: linear-gradient(180deg, #0A0E27 0%, #1A2151 100%);
        }
        
        .section-title {
            font-size: 36px;
            margin-bottom: 20px;
            color: #00D4FF;
            text-align: center;
            text-transform: uppercase;
            position: relative;
            padding-bottom: 15px;
        }
        
        .section-title::after {
            content: "";
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background: linear-gradient(90deg, #FF8C00, #00D4FF);
        }
        
        .about-content {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-top: 50px;
        }
        
        .about-text {
            flex: 1;
            padding-right: 40px;
        }
        
        .about-text p {
            font-size: 16px;
            line-height: 1.8;
            margin-bottom: 20px;
        }
        
        .about-image {
            flex: 1;
            position: relative;
        }
        
        .about-image img {
            width: 100%;
            border-radius: 10px;
            box-shadow: 0 15px 30px rgba(0, 212, 255, 0.2);
        }
        
        /* Products Section */
        .products {
            padding: 100px 0;
            background: linear-gradient(180deg, #1A2151 0%, #0A0E27 100%);
        }
        
        .products-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }
        
        .product-card {
            background: rgba(255, 140, 0, 0.1);
            border-radius: 15px;
            padding: 30px;
            text-align: center;
            transition: all 0.3s;
            border: 1px solid rgba(255, 140, 0, 0.2);
        }
        
        .product-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(255, 140, 0, 0.2);
        }
        
        .product-icon {
            font-size: 40px;
            color: #9D4EDD;
            margin-bottom: 20px;
        }
        
        .product-card h3 {
            font-size: 22px;
            margin-bottom: 15px;
            color: #FF8C00;
        }
        
        .product-card p {
            font-size: 16px;
            line-height: 1.6;
        }
        
        /* Prices Section */
        .prices {
            padding: 100px 0;
            background: linear-gradient(180deg, #0A0E27 0%, #1A2151 100%);
        }
        
        .prices-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }
        
        .price-card {
            background: rgba(10, 14, 39, 0.7);
            border-radius: 15px;
            padding: 40px 30px;
            text-align: center;
            position: relative;
            border: 1px solid rgba(0, 212, 255, 0.2);
            transition: all 0.3s;
        }
        
        .price-card.featured {
            transform: scale(1.05);
            border: 2px solid #FF8C00;
        }
        
        .price-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 212, 255, 0.2);
        }
        
        .price-card.featured:hover {
            transform: scale(1.05) translateY(-10px);
        }
        
        .price-name {
            font-size: 24px;
            margin-bottom: 15px;
            color: #00D4FF;
            text-transform: uppercase;
        }
        
        .price-value {
            font-size: 48px;
            font-weight: bold;
            color: #FF8C00;
            margin-bottom: 20px;
        }
        
        .price-period {
            font-size: 16px;
            color: #FFFFFF;
            margin-bottom: 30px;
        }
        
        .price-features {
            list-style: none;
            margin-bottom: 30px;
        }
        
        .price-features li {
            padding: 10px 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }
        
        /* Gallery Section */
        .gallery {
            padding: 100px 0;
            background: linear-gradient(180deg, #1A2151 0%, #0A0E27 100%);
        }
        
        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
            margin-top: 50px;
        }
        
        .gallery-item {
            position: relative;
            overflow: hidden;
            border-radius: 10px;
            height: 250px;
        }
        
        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: all 0.5s;
        }
        
        .gallery-item:hover img {
            transform: scale(1.1);
        }
        
        .gallery-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(10, 14, 39, 0.7);
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: all 0.3s;
        }
        
        .gallery-item:hover .gallery-overlay {
            opacity: 1;
        }
        
        .gallery-text {
            text-align: center;
            padding: 0 20px;
        }
        
        /* Feedback Section */
        .feedback {
            padding: 100px 0;
            background: linear-gradient(180deg, #0A0E27 0%, #1A2151 100%);
        }
        
        .feedback-slider {
            position: relative;
            margin-top: 50px;
            overflow: hidden;
        }
        
        .feedback-container {
            display: flex;
            transition: transform 0.5s ease;
        }
        
        .feedback-item {
            min-width: 100%;
            padding: 30px;
            background: rgba(255, 140, 0, 0.1);
            border-radius: 15px;
            text-align: center;
        }
        
        .feedback-text {
            font-size: 18px;
            font-style: italic;
            margin-bottom: 20px;
            line-height: 1.6;
        }
        
        .feedback-author {
            font-size: 16px;
            font-weight: bold;
            color: #00D4FF;
        }
        
        .feedback-position {
            font-size: 14px;
            color: #FFFFFF;
            opacity: 0.8;
        }
        
        .feedback-nav {
            display: flex;
            justify-content: center;
            margin-top: 30px;
        }
        
        .feedback-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.3);
            margin: 0 5px;
            cursor: pointer;
            transition: all 0.3s;
        }
        
        .feedback-dot.active {
            background: #FF8C00;
        }
        
        /* FAQ Section */
        .faq {
            padding: 100px 0;
            background: linear-gradient(180deg, #1A2151 0%, #0A0E27 100%);
        }
        
        .faq-container {
            margin-top: 50px;
        }
        
        .faq-item {
            margin-bottom: 20px;
            border-radius: 10px;
            overflow: hidden;
            border: 1px solid rgba(255, 140, 0, 0.2);
        }
        
        .faq-question {
            padding: 20px;
            background: rgba(10, 14, 39, 0.7);
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: all 0.3s;
        }
        
        .faq-question:hover {
            background: rgba(255, 140, 0, 0.1);
        }
        
        .faq-question h3 {
            font-size: 18px;
            color: #00D4FF;
        }
        
        .faq-icon {
            font-size: 20px;
            color: #FF8C00;
            transition: transform 0.3s;
        }
        
        .faq-answer {
            padding: 0 20px;
            max-height: 0;
            overflow: hidden;
            transition: all 0.3s;
            background: rgba(255, 140, 0, 0.05);
        }
        
        .faq-item.active .faq-answer {
            padding: 20px;
            max-height: 200px;
        }
        
        .faq-item.active .faq-icon {
            transform: rotate(180deg);
        }
        
        /* Contact Form */
        .contact {
            padding: 100px 0;
            background: linear-gradient(180deg, #0A0E27 0%, #1A2151 100%);
        }
        
        .contact-form {
            max-width: 600px;
            margin: 50px auto 0;
            background: rgba(10, 14, 39, 0.7);
            padding: 40px;
            border-radius: 15px;
            border: 1px solid rgba(0, 212, 255, 0.2);
        }
        
        .form-group {
            margin-bottom: 20px;
        }
        
        .form-group label {
            display: block;
            margin-bottom: 8px;
            color: #00D4FF;
            font-weight: bold;
        }
        
        .form-control {
            width: 100%;
            padding: 12px 15px;
            background: rgba(10, 14, 39, 0.5);
            border: 1px solid rgba(255, 140, 0, 0.3);
            border-radius: 5px;
            color: #FFFFFF;
            font-size: 16px;
            transition: all 0.3s;
        }
        
        .form-control:focus {
            outline: none;
            border-color: #FF8C00;
            box-shadow: 0 0 10px rgba(255, 140, 0, 0.3);
        }
        
        /* Footer */
        footer {
            background: #0A0E27;
            padding: 50px 0 20px;
            border-top: 1px solid rgba(255, 140, 0, 0.2);
        }
        
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-bottom: 30px;
        }
        
        .footer-column h3 {
            font-size: 20px;
            margin-bottom: 20px;
            color: #FF8C00;
            text-transform: uppercase;
        }
        
        .footer-links {
            list-style: none;
        }
        
        .footer-links li {
            margin-bottom: 10px;
        }
        
        .footer-links a {
            color: #FFFFFF;
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .footer-links a:hover {
            color: #00D4FF;
        }
        
        .footer-contact p {
            margin-bottom: 10px;
            color: #FFFFFF;
        }
        
        .footer-bottom {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            font-size: 14px;
            color: rgba(255, 255, 255, 0.7);
        }
        
        /* Disclaimer */
        .disclaimer {
            background: rgba(10, 14, 39, 0.7);
            padding: 20px;
            border-radius: 10px;
            margin: 30px 0;
            border-left: 4px solid #FF8C00;
            font-size: 14px;
            line-height: 1.6;
        }
        
        /* Cookie Banner */
        .cookie-banner {
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            background: rgba(10, 14, 39, 0.9);
            backdrop-filter: blur(10px);
            padding: 20px;
            z-index: 1000;
            transform: translateY(100%);
            transition: transform 0.5s;
            border-top: 1px solid rgba(255, 140, 0, 0.3);
        }
        
        .cookie-banner.active {
            transform: translateY(0);
        }
        
        .cookie-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
        }
        
        .cookie-text {
            flex: 1;
            margin-right: 20px;
            margin-bottom: 10px;
        }
        
        .cookie-buttons {
            display: flex;
            gap: 10px;
        }
        
        .cookie-btn {
            padding: 10px 20px;
            border: none;
            border-radius: 5px;
            cursor: pointer;
            font-weight: bold;
            transition: all 0.3s;
        }
        
        .cookie-accept {
            background: #FF8C00;
            color: #FFFFFF;
        }
        
        .cookie-accept:hover {
            background: #00D4FF;
        }
        
        .cookie-decline {
            background: transparent;
            color: #FFFFFF;
            border: 1px solid #FFFFFF;
        }
        
        .cookie-decline:hover {
            background: rgba(255, 255, 255, 0.1);
        }
        
        /* Modal */
        .modal {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.8);
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 2000;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s;
        }
        
        .modal.active {
            opacity: 1;
            visibility: visible;
        }
        
        .modal-content {
            background: #1A2151;
            padding: 40px;
            border-radius: 15px;
            max-width: 500px;
            width: 90%;
            text-align: center;
            border: 1px solid rgba(0, 212, 255, 0.3);
            transform: scale(0.7);
            transition: all 0.3s;
        }
        
        .modal.active .modal-content {
            transform: scale(1);
        }
        
        .modal-title {
            font-size: 24px;
            margin-bottom: 20px;
            color: #FF8C00;
        }
        
        .modal-text {
            margin-bottom: 30px;
            line-height: 1.6;
        }
        
        .modal-close {
            background: #00D4FF;
            color: #0A0E27;
            border: none;
            padding: 10px 30px;
            border-radius: 30px;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s;
        }
        
        .modal-close:hover {
            background: #FF8C00;
            color: #FFFFFF;
        }
        
        /* Responsive */
        @media (max-width: 992px) {
            .about-content {
                flex-direction: column;
            }
            
            .about-text {
                padding-right: 0;
                margin-bottom: 30px;
            }
        }
        
        @media (max-width: 768px) {
            .nav-menu {
                position: fixed;
                top: 70px;
                left: 0;
                width: 100%;
                background: rgba(10, 14, 39, 0.95);
                flex-direction: column;
                align-items: center;
                padding: 20px 0;
                transform: translateY(-150%);
                transition: transform 0.5s;
            }
            
            .nav-menu.active {
                transform: translateY(0);
            }
            
            .nav-menu li {
                margin: 15px 0;
            }
            
            .burger {
                display: block;
            }
            
            .hero h1 {
                font-size: 36px;
            }
            
            .section-title {
                font-size: 28px;
            }
            
            .cookie-content {
                flex-direction: column;
                text-align: center;
            }
            
            .cookie-text {
                margin-right: 0;
                margin-bottom: 20px;
            }
        }
        
        @media (max-width: 576px) {
            .hero h1 {
                font-size: 28px;
            }
            
            .hero p {
                font-size: 16px;
            }
            
            .section-title {
                font-size: 24px;
            }
            
            .price-value {
                font-size: 36px;
            }
            
            .feedback-text {
                font-size: 16px;
            }
        }

