:root {
            --neon-blue: #0ff0fc;
            --neon-purple: #bc13fe;
            --dark-bg: #0a0a16;
            --darker-bg: #050510;
            --text-color: #f0f0f5;
            --accent: #42f5b3;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Courier New', monospace;
        }
        
        body {background-color: var(--dark-bg);
            color: var(--text-color);
            line-height: 1.6;
            
            background-image: 
                radial-gradient(circle at 10% 20%, rgba(11, 11, 30, 0.9) 0%, rgba(5, 5, 16, 0.9) 90%),
                linear-gradient(45deg, rgba(66, 245, 179, 0.05) 0%, transparent 50%),
                linear-gradient(-45deg, rgba(188, 19, 254, 0.05) 0%, transparent 50%);}
        
        main {
            max-width: 1000px;
            margin: 40px auto;
            background: linear-gradient(145deg, rgba(15, 15, 30, 0.8), rgba(10, 10, 25, 0.8));
            padding: 40px;
            border-radius: 10px;
            box-shadow: 0 0 20px rgba(66, 245, 179, 0.1);
            border: 1px solid rgba(66, 245, 179, 0.1);
        }
        
        h1 {
            font-size: 2.5rem;
            margin-bottom: 30px;
            text-align: center;
            background: linear-gradient(45deg, var(--neon-blue), var(--accent));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            text-shadow: 0 0 8px rgba(66, 245, 179, 0.2);
        }
        
        h2 {
            font-size: 1.8rem;
            margin: 30px 0 15px;
            color: var(--neon-blue);
        }
        
        p {
            margin-bottom: 15px;
            font-size: 1.1rem;
        }
        
        ul {
            margin-bottom: 15px;
            padding-left: 20px;
        }
        
        li {
            margin-bottom: 8px;
        }
        
        .last-updated {
            text-align: center;
            font-style: italic;
            margin-bottom: 30px;
            color: rgba(240, 240, 245, 0.7);
        }
        
        @media (max-width: 768px) {
            main {
                padding: 20px;
            }
            
            h1 {
                font-size: 2rem;
            }
            
            h2 {
                font-size: 1.5rem;
            }
        }
:root {
            --neon-blue: #0ff0fc;
            --neon-purple: #bc13fe;
            --dark-bg: #0a0a16;
            --darker-bg: #050510;
            --text-color: #f0f0f5;
            --accent: #42f5b3;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Courier New', monospace;
        }
        
        body {background-color: var(--dark-bg);
            color: var(--text-color);
            line-height: 1.6;
            overflow-x: hidden;
            background-image: 
                radial-gradient(circle at 10% 20%, rgba(11, 11, 30, 0.9) 0%, rgba(5, 5, 16, 0.9) 90%),
                linear-gradient(45deg, rgba(66, 245, 179, 0.05) 0%, transparent 50%),
                linear-gradient(-45deg, rgba(188, 19, 254, 0.05) 0%, transparent 50%);}
        
        .container {
            width: 100%;
            padding: 0 20px;
            margin: 0 auto;
        }
        
        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            background-color: rgba(5, 5, 16, 0.9);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid var(--neon-blue);
            z-index: 1000;
            padding: 15px 0;
        }
        
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        .logo {
            font-size: 24px;
            font-weight: bold;
            color: var(--neon-blue);
            text-shadow: 0 0 5px var(--neon-blue);
            letter-spacing: 1px;
        }
        
        .nav-menu {
            display: flex;
            list-style: none;
        }
        
        .nav-menu li {
            margin-left: 30px;
        }
        
        .nav-menu a {
            color: var(--text-color);
            text-decoration: none;
            font-weight: bold;
            transition: color 0.3s, text-shadow 0.3s;
            position: relative;
        }
        
        .nav-menu a:hover {
            color: var(--neon-purple);
            text-shadow: 0 0 5px var(--neon-purple);
        }
        
        .nav-menu a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background-color: var(--neon-purple);
            transition: width 0.3s;
        }
        
        .nav-menu a:hover::after {
            width: 100%;
        }
        
        .burger {
            display: none;
            cursor: pointer;
        }
        
        .burger div {
            width: 25px;
            height: 3px;
            background-color: var(--neon-blue);
            margin: 5px;
            transition: all 0.3s ease;
        }
        
        section {
            padding: 100px 0;
            opacity: 0;
            transform: translateY(20px);
            transition: opacity 1s ease, transform 1s ease;
        }
        
        section.visible {
            opacity: 1;
            transform: translateY(0);
        }
        
        .hero {
            height: 100vh;
            display: flex;
            align-items: center;
            position: relative;
            overflow: hidden;
            background: linear-gradient(135deg, rgba(10, 10, 22, 0.9) 0%, rgba(5, 5, 16, 0.9) 100%);
        }
        
        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: 
                radial-gradient(circle at 20% 30%, rgba(66, 245, 179, 0.1) 0%, transparent 30%),
                radial-gradient(circle at 80% 70%, rgba(188, 19, 254, 0.1) 0%, transparent 30%);
            z-index: -1;
        }
        
        .hero-content {
            max-width: 800px;
            margin: 0 auto;
            text-align: center;
            padding: 0 20px;
            position: relative;
            z-index: 1;
        }
        
        .hero h1 {
            font-size: 3.5rem;
            margin-bottom: 20px;
            background: linear-gradient(45deg, var(--neon-blue), var(--neon-purple));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            text-shadow: 0 0 10px rgba(188, 19, 254, 0.3);
        }
        
        .hero p {
            font-size: 1.2rem;
            margin-bottom: 30px;
            color: var(--text-color);
        }
        
        .btn {
            display: inline-block;
            padding: 12px 30px;
            background: linear-gradient(45deg, var(--neon-blue), var(--neon-purple));
            color: white;
            text-decoration: none;
            border-radius: 30px;
            font-weight: bold;
            transition: transform 0.3s, box-shadow 0.3s;
            border: none;
            cursor: pointer;
            text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
            box-shadow: 0 0 15px rgba(66, 245, 179, 0.3);
        }
        
        .btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 0 20px rgba(188, 19, 254, 0.5);
        }
        
        h2 {
            font-size: 2.5rem;
            margin-bottom: 40px;
            text-align: center;
            background: linear-gradient(45deg, var(--neon-blue), var(--accent));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            text-shadow: 0 0 8px rgba(66, 245, 179, 0.2);
        }
        
        .about-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            align-items: center;
        }
        
        .about-text p {
            margin-bottom: 20px;
            font-size: 1.1rem;
        }
        
        .about-image img {
            width: 100%;
            border-radius: 10px;
            box-shadow: 0 0 20px rgba(66, 245, 179, 0.2);
            transition: transform 0.3s;
        }
        
        .about-image img:hover {
            transform: scale(1.02);
        }
        
        .products-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }
        
        .product-card {
            background: linear-gradient(145deg, rgba(15, 15, 30, 0.8), rgba(10, 10, 25, 0.8));
            border-radius: 10px;
            padding: 30px;
            box-shadow: 0 0 15px rgba(66, 245, 179, 0.1);
            transition: transform 0.3s, box-shadow 0.3s;
            border: 1px solid rgba(66, 245, 179, 0.1);
        }
        
        .product-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 0 25px rgba(188, 19, 254, 0.2);
            border: 1px solid rgba(188, 19, 254, 0.2);
        }
        
        .product-card h3 {
            font-size: 1.5rem;
            margin-bottom: 15px;
            color: var(--neon-blue);
        }
        
        .product-card p {
            margin-bottom: 20px;
        }
        
        .pricing-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }
        
        .pricing-plan {
            background: linear-gradient(145deg, rgba(15, 15, 30, 0.8), rgba(10, 10, 25, 0.8));
            border-radius: 10px;
            padding: 30px;
            text-align: center;
            box-shadow: 0 0 15px rgba(66, 245, 179, 0.1);
            transition: transform 0.3s, box-shadow 0.3s;
            border: 1px solid rgba(66, 245, 179, 0.1);
            position: relative;
            overflow: hidden;
        }
        
        .pricing-plan.featured {
            transform: scale(1.05);
            z-index: 1;
            border: 1px solid var(--neon-purple);
            box-shadow: 0 0 25px rgba(188, 19, 254, 0.3);
        }
        
        .pricing-plan.featured::before {
            content: 'POPULAR';
            position: absolute;
            top: 15px;
            right: -30px;
            background: var(--neon-purple);
            color: white;
            padding: 5px 30px;
            font-size: 0.8rem;
            transform: rotate(45deg);
            box-shadow: 0 0 10px rgba(188, 19, 254, 0.5);
        }
        
        .pricing-plan h3 {
            font-size: 1.8rem;
            margin-bottom: 15px;
            color: var(--neon-blue);
        }
        
        .price {
            font-size: 2.5rem;
            margin-bottom: 20px;
            color: var(--accent);
            text-shadow: 0 0 5px rgba(66, 245, 179, 0.3);
        }
        
        .pricing-features {
            list-style: none;
            margin-bottom: 30px;
        }
        
        .pricing-features li {
            margin-bottom: 10px;
            padding-left: 20px;
            position: relative;
        }
        
        .pricing-features li::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: var(--accent);
        }
        
        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
        }
        
        .gallery-item {
            border-radius: 10px;
            overflow: hidden;
            position: relative;
            height: 250px;
            box-shadow: 0 0 15px rgba(66, 245, 179, 0.1);
            transition: transform 0.3s, box-shadow 0.3s;
        }
        
        .gallery-item:hover {
            transform: scale(1.05);
            box-shadow: 0 0 25px rgba(188, 19, 254, 0.3);
            z-index: 2;
        }
        
        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s;
        }
        
        .gallery-item:hover img {
            transform: scale(1.1);
        }
        
        .feedback-slider {
            position: relative;
            overflow: hidden;
            padding: 20px 0;
        }
        
        .feedback-track {
            display: flex;
            transition: transform 0.5s ease;
        }
        
        .feedback-slide {
            flex: 0 0 100%;
            padding: 0 15px;
        }
        
        @media (min-width: 768px) {
            .feedback-slide {
                flex: 0 0 50%;
            }
        }
        
        @media (min-width: 992px) {
            .feedback-slide {
                flex: 0 0 33.333%;
            }
        }
        
        .feedback-card {
            background: linear-gradient(145deg, rgba(15, 15, 30, 0.8), rgba(10, 10, 25, 0.8));
            border-radius: 10px;
            padding: 30px;
            box-shadow: 0 0 15px rgba(66, 245, 179, 0.1);
            border: 1px solid rgba(66, 245, 179, 0.1);
            height: 100%;
        }
        
        .feedback-text {
            margin-bottom: 20px;
            font-style: italic;
        }
        
        .feedback-author {
            display: flex;
            align-items: center;
        }
        
        .feedback-author img {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            margin-right: 15px;
            object-fit: cover;
        }
        
        .author-info h4 {
            font-size: 1.1rem;
            margin-bottom: 5px;
            color: var(--neon-blue);
        }
        
        .author-info p {
            font-size: 0.9rem;
            color: rgba(240, 240, 245, 0.7);
        }
        
        .slider-nav {
            display: flex;
            justify-content: center;
            margin-top: 30px;
        }
        
        .slider-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: rgba(66, 245, 179, 0.3);
            margin: 0 5px;
            cursor: pointer;
            transition: background 0.3s;
        }
        
        .slider-dot.active {
            background: var(--neon-purple);
            box-shadow: 0 0 8px var(--neon-purple);
        }
        
        .faq-container {
            max-width: 800px;
            margin: 0 auto;
        }
        
        .faq-item {
            margin-bottom: 20px;
            border: 1px solid rgba(66, 245, 179, 0.1);
            border-radius: 10px;
            overflow: hidden;
            background: linear-gradient(145deg, rgba(15, 15, 30, 0.8), rgba(10, 10, 25, 0.8));
        }
        
        .faq-question {
            padding: 20px;
            background: rgba(5, 5, 16, 0.5);
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-weight: bold;
            transition: background 0.3s;
        }
        
        .faq-question:hover {
            background: rgba(66, 245, 179, 0.1);
        }
        
        .faq-question::after {
            content: '+';
            font-size: 1.5rem;
            color: var(--neon-blue);
        }
        
        .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 {
            max-height: 500px;
            padding: 20px;
        }
        
        .contact-form {
            max-width: 600px;
            margin: 0 auto;
            background: linear-gradient(145deg, rgba(15, 15, 30, 0.8), rgba(10, 10, 25, 0.8));
            padding: 30px;
            border-radius: 10px;
            box-shadow: 0 0 20px rgba(66, 245, 179, 0.1);
            border: 1px solid rgba(66, 245, 179, 0.1);
        }
        
        .form-group {
            margin-bottom: 20px;
        }
        
        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: bold;
            color: var(--neon-blue);
        }
        
        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 12px 15px;
            background: rgba(5, 5, 16, 0.5);
            border: 1px solid rgba(66, 245, 179, 0.2);
            border-radius: 5px;
            color: var(--text-color);
            transition: border-color 0.3s, box-shadow 0.3s;
        }
        
        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--neon-purple);
            box-shadow: 0 0 10px rgba(188, 19, 254, 0.3);
        }
        
        .disclaimer {
            background: var(--darker-bg);
            padding: 30px 0;
            font-size: 0.9rem;
            color: rgba(240, 240, 245, 0.7);
            border-top: 1px solid rgba(66, 245, 179, 0.1);
        }
        
        .disclaimer p {
            margin-bottom: 15px;
        }
        
        .cookie-banner {
            position: fixed;
            bottom: 20px;
            left: 50%;
            transform: translateX(-50%);
            background: linear-gradient(145deg, rgba(15, 15, 30, 0.95), rgba(10, 10, 25, 0.95));
            padding: 20px;
            border-radius: 10px;
            box-shadow: 0 0 20px rgba(188, 19, 254, 0.3);
            z-index: 1000;
            width: 90%;
            max-width: 600px;
            display: flex;
            flex-direction: column;
            align-items: center;
            border: 1px solid var(--neon-purple);
            display: none;
        }
        
        .cookie-banner p {
            margin-bottom: 15px;
            text-align: center;
        }
        
        .cookie-banner button {
            margin: 0 10px;
        }
        
        footer {
            background: var(--darker-bg);
            padding: 60px 0 30px;
            border-top: 1px solid rgba(66, 245, 179, 0.1);
        }
        
        .footer-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        .footer-logo {
            font-size: 1.5rem;
            font-weight: bold;
            color: var(--neon-blue);
            margin-bottom: 20px;
            text-shadow: 0 0 5px var(--neon-blue);
        }
        
        .footer-links h3 {
            font-size: 1.2rem;
            margin-bottom: 20px;
            color: var(--neon-blue);
        }
        
        .footer-links ul {
            list-style: none;
        }
        
        .footer-links li {
            margin-bottom: 10px;
        }
        
        .footer-links a {
            color: rgba(240, 240, 245, 0.7);
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .footer-links a:hover {
            color: var(--neon-purple);
        }
        
        .footer-contact p {
            margin-bottom: 10px;
            display: flex;
            align-items: center;
        }
        
        .footer-contact i {
            margin-right: 10px;
            color: var(--neon-blue);
        }
        
        .footer-bottom {
            text-align: center;
            padding-top: 30px;
            margin-top: 30px;
            border-top: 1px solid rgba(66, 245, 179, 0.1);
            font-size: 0.9rem;
            color: rgba(240, 240, 245, 0.5);
        }
        
        .modal {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(5, 5, 16, 0.9);
            display: flex;
            justify-content: center;
            align-items: center;
            z-index: 2000;
            opacity: 0;
            visibility: hidden;
            transition: opacity 0.3s, visibility 0.3s;
        }
        
        .modal.active {
            opacity: 1;
            visibility: visible;
        }
        
        .modal-content {
            background: linear-gradient(145deg, rgba(15, 15, 30, 0.95), rgba(10, 10, 25, 0.95));
            padding: 40px;
            border-radius: 10px;
            text-align: center;
            max-width: 500px;
            width: 90%;
            box-shadow: 0 0 30px rgba(188, 19, 254, 0.5);
            border: 1px solid var(--neon-purple);
            position: relative;
        }
        
        .modal-close {
            position: absolute;
            top: 15px;
            right: 15px;
            background: none;
            border: none;
            color: var(--text-color);
            font-size: 1.5rem;
            cursor: pointer;
            transition: color 0.3s;
        }
        
        .modal-close:hover {
            color: var(--neon-purple);
        }
        
        .modal h3 {
            font-size: 1.8rem;
            margin-bottom: 20px;
            color: var(--neon-blue);
        }
        
        .modal p {
            margin-bottom: 30px;
        }
        
        @media (max-width: 992px) {
            .about-content {
                grid-template-columns: 1fr;
            }
            
            .hero h1 {
                font-size: 2.5rem;
            }
        }
        
        @media (max-width: 768px) {
            .nav-menu {
                position: fixed;
                top: 70px;
                right: -100%;
                height: calc(100vh - 70px);
                width: 70%;
                background: rgba(5, 5, 16, 0.95);
                flex-direction: column;
                align-items: center;
                justify-content: center;
                transition: right 0.5s ease;
                backdrop-filter: blur(10px);
                border-left: 1px solid var(--neon-blue);
            }
            
            .nav-menu.active {
                right: 0;
            }
            
            .nav-menu li {
                margin: 20px 0;
            }
            
            .burger {
                display: block;
            }
            
            .burger.active div:nth-child(1) {
                transform: rotate(45deg) translate(5px, 8px);
            }
            
            .burger.active div:nth-child(2) {
                opacity: 0;
            }
            
            .burger.active div:nth-child(3) {
                transform: rotate(-45deg) translate(5px, -8px);
            }
            
            .pricing-plan.featured {
                transform: scale(1);
            }
        }
        
        /* Parallax effect */
        .parallax {
            background-attachment: fixed;
            background-position: center;
            background-repeat: no-repeat;
            background-size: cover;
        }

