:root {
            --primary: #ff4d8d;
            --secondary: #00e6cc;
            --accent: #ffdb58;
            --dark: #1a1a40;
            --light: #f0f5ff;
            --retro-bg: #2d1b69;
            --retro-text: #e6e6fa;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Courier New', monospace;
        }
        
        body {
            background-color: var(--retro-bg);
            color: var(--retro-text);
            line-height: 1.6;
            overflow-x: hidden;
            background-image: 
                radial-gradient(circle at 10% 20%, rgba(255, 77, 141, 0.15) 0%, transparent 20%),
                radial-gradient(circle at 90% 80%, rgba(0, 230, 204, 0.15) 0%, transparent 20%);
        }
        
        .container {
            width: 100%;
            padding: 0 15px;
            margin: 0 auto;
        }
        
        /* Header Styles */
        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            background-color: rgba(26, 26, 64, 0.95);
            padding: 15px 0;
            z-index: 1000;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
            border-bottom: 1px solid var(--primary);
        }
        
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .logo {
            font-size: 24px;
            font-weight: bold;
            color: var(--primary);
            text-decoration: none;
            display: flex;
            align-items: center;
        }
        
        .logo span {
            color: var(--secondary);
        }
        
        .nav-menu {
            display: flex;
            list-style: none;
        }
        
        .nav-menu li {
            margin-left: 25px;
        }
        
        .nav-menu a {
            color: var(--retro-text);
            text-decoration: none;
            font-weight: bold;
            transition: color 0.3s;
            position: relative;
        }
        
        .nav-menu a:after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background-color: var(--primary);
            transition: width 0.3s;
        }
        
        .nav-menu a:hover {
            color: var(--primary);
        }
        
        .nav-menu a:hover:after {
            width: 100%;
        }
        
        .burger {
            display: none;
            cursor: pointer;
        }
        
        .burger div {
            width: 25px;
            height: 3px;
            background-color: var(--retro-text);
            margin: 5px;
            transition: all 0.3s ease;
        }
        
        /* Hero Section */
        .hero {
            padding: 150px 0 100px;
            text-align: center;
            background: linear-gradient(to bottom, var(--retro-bg), var(--dark));
            position: relative;
            overflow: hidden;
        }
        
        .hero-content {
            max-width: 800px;
            margin: 0 auto;
            position: relative;
            z-index: 2;
        }
        
        .hero h1 {
            font-size: 48px;
            margin-bottom: 20px;
            color: var(--primary);
            text-shadow: 0 0 10px rgba(255, 77, 141, 0.5);
        }
        
        .hero p {
            font-size: 20px;
            margin-bottom: 30px;
            color: var(--secondary);
        }
        
        .btn {
            display: inline-block;
            padding: 12px 30px;
            background-color: var(--primary);
            color: white;
            text-decoration: none;
            border-radius: 30px;
            font-weight: bold;
            transition: all 0.3s;
            border: 2px solid var(--primary);
            box-shadow: 0 0 15px rgba(255, 77, 141, 0.5);
        }
        
        .btn:hover {
            background-color: transparent;
            color: var(--primary);
            transform: translateY(-3px);
            box-shadow: 0 0 20px rgba(255, 77, 141, 0.8);
        }
        
        /* About Section */
        .about {
            padding: 100px 0;
            background-color: var(--dark);
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 50px;
            font-size: 36px;
            color: var(--secondary);
            position: relative;
        }
        
        .section-title:after {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 3px;
            background-color: var(--primary);
        }
        
        .about-content {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 30px;
        }
        
        .about-text {
            flex: 1;
            min-width: 300px;
            padding: 20px;
        }
        
        .about-image {
            flex: 1;
            min-width: 300px;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 0 20px rgba(0, 230, 204, 0.3);
        }
        
        .about-image img {
            width: 100%;
            height: auto;
            display: block;
            transition: transform 0.5s;
        }
        
        .about-image img:hover {
            transform: scale(1.05);
        }
        
        /* Products Section */
        .products {
            padding: 100px 0;
            background: linear-gradient(to bottom, var(--dark), var(--retro-bg));
        }
        
        .product-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }
        
        .product-card {
            background: rgba(45, 27, 105, 0.7);
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
            transition: transform 0.3s, box-shadow 0.3s;
            border: 1px solid var(--secondary);
        }
        
        .product-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 230, 204, 0.4);
        }
        
        .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: 20px;
        }
        
        .product-info h3 {
            color: var(--primary);
            margin-bottom: 10px;
            font-size: 22px;
        }
        
        /* Prices Section */
        .prices {
            padding: 100px 0;
            background-color: var(--dark);
        }
        
        .price-cards {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 30px;
        }
        
        .price-card {
            background: rgba(45, 27, 105, 0.7);
            border-radius: 10px;
            padding: 30px;
            text-align: center;
            flex: 1;
            min-width: 280px;
            max-width: 350px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
            border: 1px solid var(--accent);
            transition: transform 0.3s;
        }
        
        .price-card:hover {
            transform: scale(1.05);
            box-shadow: 0 15px 30px rgba(255, 219, 88, 0.3);
        }
        
        .price-card h3 {
            color: var(--accent);
            font-size: 24px;
            margin-bottom: 15px;
        }
        
        .price {
            font-size: 32px;
            color: var(--primary);
            margin: 20px 0;
            font-weight: bold;
        }
        
        .price-features {
            list-style: none;
            margin: 20px 0;
        }
        
        .price-features li {
            margin-bottom: 10px;
            position: relative;
            padding-left: 20px;
        }
        
        .price-features li:before {
            content: '✓';
            color: var(--secondary);
            position: absolute;
            left: 0;
        }
        
        /* Gallery Section */
        .gallery {
            padding: 100px 0;
            background: linear-gradient(to bottom, var(--retro-bg), var(--dark));
        }
        
        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 15px;
        }
        
        .gallery-item {
            position: relative;
            overflow: hidden;
            border-radius: 10px;
            height: 250px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        }
        
        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s;
        }
        
        .gallery-item:hover img {
            transform: scale(1.1);
        }
        
        .gallery-caption {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: rgba(26, 26, 64, 0.8);
            padding: 10px;
            transform: translateY(100%);
            transition: transform 0.3s;
            color: var(--secondary);
        }
        
        .gallery-item:hover .gallery-caption {
            transform: translateY(0);
        }
        
        /* Feedback Section */
        .feedback {
            padding: 100px 0;
            background-color: var(--dark);
        }
        
        .testimonials {
            max-width: 1000px;
            margin: 0 auto;
            position: relative;
        }
        
        .testimonial {
            background: rgba(45, 27, 105, 0.7);
            padding: 30px;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
            text-align: center;
            border: 1px solid var(--primary);
            display: none;
        }
        
        .testimonial.active {
            display: block;
            animation: fadeIn 0.5s;
        }
        
        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }
        
        .testimonial-text {
            font-style: italic;
            margin-bottom: 20px;
            font-size: 18px;
        }
        
        .testimonial-author {
            font-weight: bold;
            color: var(--secondary);
        }
        
        .testimonial-nav {
            display: flex;
            justify-content: center;
            margin-top: 30px;
        }
        
        .testimonial-dot {
            width: 12px;
            height: 12px;
            background: rgba(255, 77, 141, 0.5);
            border-radius: 50%;
            margin: 0 5px;
            cursor: pointer;
            transition: background 0.3s;
        }
        
        .testimonial-dot.active {
            background: var(--primary);
        }
        
        /* FAQ Section */
        .faq {
            padding: 100px 0;
            background: linear-gradient(to bottom, var(--dark), var(--retro-bg));
        }
        
        .faq-container {
            max-width: 800px;
            margin: 0 auto;
        }
        
        .faq-item {
            margin-bottom: 20px;
            border: 1px solid var(--secondary);
            border-radius: 10px;
            overflow: hidden;
        }
        
        .faq-question {
            padding: 20px;
            background: rgba(45, 27, 105, 0.5);
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-weight: bold;
            color: var(--accent);
        }
        
        .faq-answer {
            padding: 0 20px;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s, padding 0.3s;
            background: rgba(26, 26, 64, 0.5);
        }
        
        .faq-item.active .faq-answer {
            max-height: 300px;
            padding: 20px;
        }
        
        /* Contact Section */
        .contact {
            padding: 100px 0;
            background-color: var(--dark);
        }
        
        .contact-form {
            max-width: 600px;
            margin: 0 auto;
            background: rgba(45, 27, 105, 0.7);
            padding: 30px;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
            border: 1px solid var(--primary);
        }
        
        .form-group {
            margin-bottom: 20px;
        }
        
        .form-group label {
            display: block;
            margin-bottom: 5px;
            color: var(--secondary);
        }
        
        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 12px;
            border: 1px solid var(--secondary);
            border-radius: 5px;
            background: rgba(26, 26, 64, 0.5);
            color: var(--retro-text);
            font-size: 16px;
        }
        
        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--primary);
            box-shadow: 0 0 10px rgba(255, 77, 141, 0.5);
        }
        
        textarea {
            min-height: 120px;
            resize: vertical;
        }
        
        /* Disclaimer */
        .disclaimer {
            padding: 30px 0;
            background-color: var(--retro-bg);
            text-align: center;
            font-size: 14px;
            color: rgba(230, 230, 250, 0.7);
        }
        
        /* Cookie Banner */
        .cookie-banner {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background: rgba(26, 26, 64, 0.95);
            padding: 20px;
            box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.3);
            z-index: 1000;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            border-top: 2px solid var(--accent);
        }
        
        .cookie-text {
            flex: 1;
            min-width: 300px;
            margin-right: 20px;
        }
        
        .cookie-buttons {
            display: flex;
            gap: 10px;
        }
        
        .cookie-btn {
            padding: 8px 20px;
            border: none;
            border-radius: 5px;
            cursor: pointer;
            font-weight: bold;
            transition: background 0.3s;
        }
        
        .cookie-accept {
            background: var(--primary);
            color: white;
        }
        
        .cookie-reject {
            background: transparent;
            color: var(--retro-text);
            border: 1px solid var(--retro-text);
        }
        
        /* Footer */
        footer {
            background: var(--dark);
            padding: 50px 0 30px;
            border-top: 1px solid var(--secondary);
        }
        
        .footer-content {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 30px;
        }
        
        .footer-section {
            flex: 1;
            min-width: 250px;
        }
        
        .footer-section h3 {
            color: var(--primary);
            margin-bottom: 20px;
            font-size: 20px;
        }
        
        .footer-links {
            list-style: none;
        }
        
        .footer-links li {
            margin-bottom: 10px;
        }
        
        .footer-links a {
            color: var(--retro-text);
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .footer-links a:hover {
            color: var(--secondary);
        }
        
        .contact-info {
            list-style: none;
        }
        
        .contact-info li {
            margin-bottom: 15px;
            display: flex;
            align-items: center;
        }
        
        .contact-info i {
            margin-right: 10px;
            color: var(--secondary);
            width: 20px;
        }
        
        .footer-bottom {
            text-align: center;
            margin-top: 30px;
            padding-top: 20px;
            border-top: 1px solid rgba(230, 230, 250, 0.2);
        }
        
        /* Modal */
        .modal {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.7);
            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: var(--dark);
            padding: 40px;
            border-radius: 10px;
            text-align: center;
            max-width: 500px;
            width: 90%;
            box-shadow: 0 0 30px rgba(255, 77, 141, 0.5);
            border: 2px solid var(--primary);
            position: relative;
        }
        
        .modal-close {
            position: absolute;
            top: 10px;
            right: 10px;
            background: none;
            border: none;
            color: var(--retro-text);
            font-size: 24px;
            cursor: pointer;
        }
        
        .modal h2 {
            color: var(--secondary);
            margin-bottom: 20px;
        }
        
        /* Responsive Styles */
        @media (max-width: 768px) {
            .burger {
                display: block;
            }
            
            .nav-menu {
                position: fixed;
                top: 70px;
                right: -100%;
                width: 250px;
                height: calc(100vh - 70px);
                background: rgba(26, 26, 64, 0.98);
                flex-direction: column;
                align-items: center;
                justify-content: flex-start;
                padding-top: 50px;
                transition: right 0.3s;
                z-index: 999;
            }
            
            .nav-menu.active {
                right: 0;
            }
            
            .nav-menu li {
                margin: 15px 0;
            }
            
            .hero h1 {
                font-size: 36px;
            }
            
            .hero p {
                font-size: 18px;
            }
            
            .section-title {
                font-size: 30px;
            }
            
            .cookie-banner {
                flex-direction: column;
                text-align: center;
            }
            
            .cookie-text {
                margin-right: 0;
                margin-bottom: 15px;
            }
        }
        
        /* Burger menu animation */
        .burger.toggle .line1 {
            transform: rotate(-45deg) translate(-5px, 6px);
        }
        
        .burger.toggle .line2 {
            opacity: 0;
        }
        
        .burger.toggle .line3 {
            transform: rotate(45deg) translate(-5px, -6px);
        }

