:root {
            --primary: #FF2079;
            --secondary: #00F3FF;
            --accent: #B44CFF;
            --dark: #0A0A2A;
            --light: #E6F4F1;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Courier New', monospace;
        }

        body {background: var(--dark);
            color: var(--light);
            line-height: 1.6;}

        main {
            max-width: 800px;
            margin: 0 auto;
            padding: 4rem 2rem;
            min-height: 100vh;
        }

        h1 {
            color: var(--primary);
            font-size: 2.5rem;
            margin-bottom: 2rem;
            text-align: center;
        }

        h2 {
            color: var(--secondary);
            font-size: 1.8rem;
            margin: 2rem 0 1rem 0;
        }

        h3 {
            color: var(--accent);
            font-size: 1.3rem;
            margin: 1.5rem 0 0.5rem 0;
        }

        p {
            margin-bottom: 1rem;
        }

        ul {
            margin-left: 2rem;
            margin-bottom: 1rem;
        }

        table {
            width: 100%;
            border-collapse: collapse;
            margin: 1rem 0;
        }

        th, td {
            padding: 0.8rem;
            border: 1px solid var(--secondary);
            text-align: left;
        }

        th {
            background: rgba(0, 243, 255, 0.1);
        }

        .last-updated {
            color: var(--secondary);
            font-style: italic;
            margin-bottom: 2rem;
            text-align: center;
        }
:root {
            --primary: #FF2079;
            --secondary: #00F3FF;
            --accent: #B44CFF;
            --dark: #0A0A2A;
            --light: #E6F4F1;
            --retro-pink: #FF6B9D;
            --retro-blue: #00D4FF;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Courier New', monospace;
        }

        body {background: var(--dark);
            color: var(--light);
            overflow-x: hidden;
            line-height: 1.6;}

        header {
            position: fixed;
            top: 0;
            width: 100%;
            background: rgba(10, 10, 42, 0.95);
            backdrop-filter: blur(10px);
            z-index: 1000;
            padding: 1rem 2rem;
            border-bottom: 3px solid var(--primary);
        }

        .nav-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1200px;
            margin: 0 auto;
        }

        .logo {
            font-size: 1.8rem;
            font-weight: bold;
            color: var(--retro-blue);
            text-shadow: 0 0 10px var(--secondary);
        }

        .burger {
            display: none;
            flex-direction: column;
            cursor: pointer;
        }

        .burger span {
            width: 25px;
            height: 3px;
            background: var(--primary);
            margin: 3px 0;
            transition: 0.3s;
        }

        .nav-links {
            display: flex;
            list-style: none;
            gap: 2rem;
        }

        .nav-links a {
            color: var(--light);
            text-decoration: none;
            text-transform: uppercase;
            font-weight: bold;
            transition: color 0.3s;
            padding: 0.5rem 1rem;
            border: 1px solid transparent;
        }

        .nav-links a:hover {
            color: var(--primary);
            border: 1px solid var(--primary);
        }

        section {
            padding: 5rem 2rem;
        }

        .hero {
            background: linear-gradient(rgba(10, 10, 42, 0.8), rgba(10, 10, 42, 0.9)), 
                        url('https://images.unsplash.com/photo-1725352200750-ad02ebbb1148?q=80&w=737&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D');
            background-size: cover;
            background-attachment: fixed;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            padding-top: 200px;
        }

        .hero-content h1 {
            font-size: 3.5rem;
            margin-bottom: 1rem;
            color: var(--retro-blue);
            text-shadow: 0 0 20px var(--secondary);
        }

        .hero-content p {
            font-size: 1.3rem;
            margin-bottom: 2rem;
            color: var(--light);
        }

        .btn {
            display: inline-block;
            padding: 1rem 2rem;
            background: var(--primary);
            color: var(--light);
            text-decoration: none;
            border: none;
            font-size: 1.1rem;
            cursor: pointer;
            transition: all 0.3s;
            text-transform: uppercase;
            font-weight: bold;
        }

        .btn:hover {
            background: var(--accent);
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(180, 76, 255, 0.3);
        }

        .about {
            background: var(--dark);
            border-bottom: 3px solid var(--accent);
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
        }

        h2 {
            font-size: 2.5rem;
            margin-bottom: 2rem;
            color: var(--retro-pink);
            text-align: center;
        }

        .about-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
            align-items: center;
        }

        .about-text h3 {
            font-size: 1.8rem;
            margin-bottom: 1rem;
            color: var(--secondary);
        }

        .products-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        .product-card {
            background: rgba(255, 107, 157, 0.1);
            padding: 2rem;
            border: 2px solid var(--retro-pink);
            border-radius: 10px;
            transition: transform 0.3s;
        }

        .product-card:hover {
            transform: translateY(-10px);
        }

        .pricing-table {
            width: 100%;
            border-collapse: collapse;
            margin-top: 2rem;
        }

        .pricing-table th, .pricing-table td {
            padding: 1rem;
            text-align: left;
            border-bottom: 1px solid var(--retro-blue);
        }

        .pricing-table th {
            background: rgba(0, 212, 255, 0.1);
            color: var(--secondary);
        }

        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 1rem;
            margin-top: 2rem;
        }

        .gallery-item {
            height: 300px;
            overflow: hidden;
            border: 3px solid var(--primary);
        }

        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s;
        }

        .gallery-item:hover img {
            transform: scale(1.1);
        }

        .feedback-slider {
            position: relative;
            max-width: 800px;
            margin: 3rem auto 0;
            overflow: hidden;
        }

        .slides {
            display: flex;
            transition: transform 0.5s ease-in-out;
        }

        .slide {
            min-width: 100%;
            padding: 2rem;
            background: rgba(255, 107, 157, 0.1);
            border: 2px solid var(--retro-pink);
        }

        .client-name {
            color: var(--secondary);
            font-weight: bold;
            margin-top: 1rem;
        }

        .faq-item {
            margin-bottom: 1rem;
            border: 2px solid var(--retro-blue);
        }

        .faq-question {
            padding: 1rem;
            background: rgba(0, 212, 255, 0.1);
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .faq-answer {
            padding: 1rem;
            display: none;
        }

        .contact-form {
            max-width: 600px;
            margin: 2rem auto 0;
        }

        .form-group {
            margin-bottom: 1.5rem;
        }

        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            color: var(--secondary);
        }

        .form-group input, .form-group textarea {
            width: 100%;
            padding: 0.8rem;
            background: rgba(255, 255, 255, 0.1);
            border: 2px solid var(--retro-blue);
            color: var(--light);
        }

        .disclaimer {
            background: rgba(255, 0, 121, 0.1);
            padding: 2rem;
            margin-top: 3rem;
            border-top: 3px solid var(--primary);
            font-size: 0.9rem;
        }

        .cookie-banner {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background: var(--dark);
            padding: 1rem 2rem;
            border-top: 3px solid var(--accent);
            display: none;
            z-index: 1001;
        }

        .cookie-content {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
        }

        footer {
            background: rgba(10, 10, 42, 0.95);
            padding: 3rem 2rem;
            border-top: 3px solid var(--accent);
        }

        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
        }

        .footer-links a {
            display: block;
            color: var(--light);
            text-decoration: none;
            margin-bottom: 0.5rem;
            transition: color 0.3s;
        }

        .footer-links a:hover {
            color: var(--primary);
        }

        .popup {
            display: none;
            position: fixed;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            background: var(--dark);
            padding: 3rem;
            border: 3px solid var(--primary);
            z-index: 1002;
            text-align: center;
        }

        @media (max-width: 768px) {
            .burger {
                display: flex;
            }

            .nav-links {
                position: fixed;
                top: 70px;
                left: -100%;
                width: 100%;
                height: calc(100vh - 70px);
                background: var(--dark);
                flex-direction: column;
                align-items: center;
                justify-content: flex-start;
                padding-top: 2rem;
                transition: left 0.3s;
            }

            .nav-links.active {
                left: 0;
            }

            .about-content {
                grid-template-columns: 1fr;
            }

            h1 {
                font-size: 2.5rem;
            }

            h2 {
                font-size: 2rem;
            }
        }

