* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial', sans-serif;
        }
        
        body {
            background-color: #1A1A2E;
            color: #F7F7F7;
            overflow-x: hidden;
        }
        
        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            background-color: rgba(26, 26, 46, 0.95);
            z-index: 1000;
            padding: 15px 0;
            transition: all 0.3s ease;
            box-shadow: 0 2px 10px rgba(0,0,0,0.3);
        }
        
        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        .logo {
            font-size: 28px;
            font-weight: bold;
            color: #FFE66D;
            text-decoration: none;
            letter-spacing: 1px;
            font-family: 'Courier New', monospace;
        }
        
        .nav-links {
            display: flex;
            list-style: none;
        }
        
        .nav-links li {
            margin-left: 30px;
        }
        
        .nav-links a {
            color: #F7F7F7;
            text-decoration: none;
            font-size: 16px;
            transition: color 0.3s ease;
            position: relative;
        }
        
        .nav-links a:hover {
            color: #4ECDC4;
        }
        
        .nav-links a::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: -5px;
            left: 0;
            background-color: #4ECDC4;
            transition: width 0.3s ease;
        }
        
        .nav-links a:hover::after {
            width: 100%;
        }
        
        .burger {
            display: none;
            cursor: pointer;
        }
        
        .burger div {
            width: 25px;
            height: 3px;
            background-color: #F7F7F7;
            margin: 5px 0;
            transition: all 0.3s ease;
        }
        
        .hero {
            height: 100vh;
            background: linear-gradient(rgba(26, 26, 46, 0.7), rgba(26, 26, 46, 0.9)), url('../img/14.webp');
            background-size: cover;
            background-position: center;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            padding: 0 20px;
            position: relative;
            overflow: hidden;
        }
        
        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: radial-gradient(circle at center, rgba(78, 205, 196, 0.2) 0%, rgba(26, 26, 46, 0) 70%);
            z-index: 1;
        }
        
        .hero-content {
            max-width: 800px;
            z-index: 2;
            position: relative;
        }
        
        .hero h1 {
            font-size: 56px;
            margin-bottom: 20px;
            color: #FFE66D;
            text-transform: uppercase;
            letter-spacing: 3px;
            font-family: 'Courier New', monospace;
            animation: fadeInDown 1s ease;
        }
        
        .hero p {
            font-size: 20px;
            margin-bottom: 30px;
            line-height: 1.6;
            animation: fadeInUp 1s ease;
        }
        
        .cta-button {
            display: inline-block;
            background-color: #FF6B6B;
            color: #F7F7F7;
            padding: 15px 35px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: bold;
            text-transform: uppercase;
            transition: all 0.3s ease;
            animation: fadeIn 1.5s ease;
            box-shadow: 0 4px 15px rgba(255, 107, 107, 0.4);
        }
        
        .cta-button:hover {
            background-color: #4ECDC4;
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(78, 205, 196, 0.4);
        }
        
        .about {
            padding: 100px 0;
            background-color: #16213E;
        }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 60px;
        }
        
        .section-title h2 {
            font-size: 42px;
            color: #FFE66D;
            margin-bottom: 15px;
            text-transform: uppercase;
            letter-spacing: 2px;
            font-family: 'Courier New', monospace;
        }
        
        .section-title p {
            font-size: 18px;
            max-width: 700px;
            margin: 0 auto;
            line-height: 1.6;
        }
        
        .about-content {
            display: flex;
            align-items: center;
            gap: 50px;
        }
        
        .about-text {
            flex: 1;
        }
        
        .about-text h3 {
            font-size: 28px;
            margin-bottom: 20px;
            color: #4ECDC4;
        }
        
        .about-text p {
            margin-bottom: 20px;
            line-height: 1.6;
            font-size: 16px;
        }
        
        .about-image {
            flex: 1;
            height: 400px;
            background: url('../img/03.webp');
            background-size: cover;
            background-position: center;
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.3);
            transition: transform 0.5s ease;
        }
        
        .about-image:hover {
            transform: scale(1.02);
        }
        
        .products {
            padding: 100px 0;
            background-color: #1A1A2E;
        }
        
        .products-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }
        
        .product-card {
            background-color: #16213E;
            border-radius: 15px;
            overflow: hidden;
            transition: all 0.3s ease;
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
        }
        
        .product-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.3);
        }
        
        .product-image {
            height: 200px;
            background-size: cover;
            background-position: center;
        }
        
        .product-content {
            padding: 25px;
        }
        
        .product-content h3 {
            font-size: 24px;
            margin-bottom: 15px;
            color: #FFE66D;
        }
        
        .product-content p {
            margin-bottom: 20px;
            line-height: 1.6;
        }
        
        .prices {
            padding: 100px 0;
            background-color: #16213E;
        }
        
        .prices-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }
        
        .price-card {
            background-color: #1A1A2E;
            border-radius: 15px;
            padding: 40px 30px;
            text-align: center;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
        }
        
        .price-card.featured {
            border: 2px solid #FFE66D;
            transform: scale(1.05);
        }
        
        .price-card.featured::before {
            content: "Popular";
            position: absolute;
            top: 15px;
            right: -35px;
            background-color: #FFE66D;
            color: #1A1A2E;
            padding: 5px 40px;
            transform: rotate(45deg);
            font-size: 14px;
            font-weight: bold;
        }
        
        .price-card h3 {
            font-size: 24px;
            margin-bottom: 15px;
            color: #4ECDC4;
        }
        
        .price {
            font-size: 48px;
            margin-bottom: 20px;
            color: #FFE66D;
        }
        
        .price span {
            font-size: 18px;
            color: #F7F7F7;
        }
        
        .price-features {
            list-style: none;
            margin-bottom: 30px;
            text-align: left;
        }
        
        .price-features li {
            margin-bottom: 12px;
            padding-left: 25px;
            position: relative;
        }
        
        .price-features li::before {
            content: "✓";
            position: absolute;
            left: 0;
            color: #4ECDC4;
            font-weight: bold;
        }
        
        .gallery {
            padding: 100px 0;
            background-color: #1A1A2E;
        }
        
        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
        }
        
        .gallery-item {
            height: 250px;
            background-size: cover;
            background-position: center;
            border-radius: 10px;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
        }
        
        .gallery-item:hover {
            transform: scale(1.05);
            box-shadow: 0 10px 25px rgba(0,0,0,0.3);
        }
        
        .feedback {
            padding: 100px 0;
            background-color: #16213E;
        }
        
        .feedback-slider {
            max-width: 800px;
            margin: 0 auto;
            position: relative;
        }
        
        .feedback-card {
            background-color: #1A1A2E;
            border-radius: 15px;
            padding: 30px;
            text-align: center;
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
        }
        
        .feedback-card p {
            font-style: italic;
            margin-bottom: 20px;
            line-height: 1.6;
            font-size: 16px;
        }
        
        .feedback-card h4 {
            font-size: 20px;
            color: #FFE66D;
        }
        
        .feedback-card .stars {
            color: #FFE66D;
            margin-bottom: 15px;
            font-size: 20px;
        }
        
        .slider-controls {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin-top: 30px;
        }
        
        .slider-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background-color: #444444;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .slider-dot.active {
            background-color: #4ECDC4;
            transform: scale(1.2);
        }
        
        .faq {
            padding: 100px 0;
            background-color: #1A1A2E;
        }
        
        .faq-container {
            max-width: 800px;
            margin: 0 auto;
        }
        
        .faq-item {
            background-color: #16213E;
            border-radius: 10px;
            margin-bottom: 15px;
            overflow: hidden;
            box-shadow: 0 3px 10px rgba(0,0,0,0.2);
        }
        
        .faq-question {
            padding: 20px;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: background-color 0.3s ease;
        }
        
        .faq-question:hover {
            background-color: rgba(78, 205, 196, 0.1);
        }
        
        .faq-question h3 {
            font-size: 18px;
            color: #F7F7F7;
        }
        
        .faq-toggle {
            font-size: 24px;
            color: #4ECDC4;
            transition: transform 0.3s ease;
        }
        
        .faq-answer {
            padding: 0 20px;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease, padding 0.3s ease;
        }
        
        .faq-answer.active {
            padding: 20px;
            max-height: 300px;
        }
        
        .faq-answer p {
            line-height: 1.6;
        }
        
        .contact {
            padding: 100px 0;
            background-color: #16213E;
        }
        
        .contact-form {
            max-width: 600px;
            margin: 0 auto;
            background-color: #1A1A2E;
            padding: 40px;
            border-radius: 15px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
        }
        
        .form-group {
            margin-bottom: 20px;
        }
        
        .form-group label {
            display: block;
            margin-bottom: 8px;
            color: #4ECDC4;
            font-weight: bold;
        }
        
        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 12px;
            background-color: #0F3460;
            border: 1px solid #16213E;
            border-radius: 5px;
            color: #F7F7F7;
            font-size: 16px;
            transition: border-color 0.3s ease;
        }
        
        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: #4ECDC4;
        }
        
        .form-button {
            background-color: #FF6B6B;
            color: #F7F7F7;
            border: none;
            padding: 15px 30px;
            border-radius: 50px;
            font-weight: bold;
            text-transform: uppercase;
            cursor: pointer;
            transition: all 0.3s ease;
            width: 100%;
            box-shadow: 0 4px 15px rgba(255, 107, 107, 0.4);
        }
        
        .form-button:hover {
            background-color: #4ECDC4;
            box-shadow: 0 6px 20px rgba(78, 205, 196, 0.4);
        }
        
        .disclaimer {
            background-color: #0F3460;
            padding: 20px;
            text-align: center;
            font-size: 14px;
            color: #F7F7F7;
            border-top: 1px solid #16213E;
        }
        
        footer {
            background-color: #0F3460;
            padding: 50px 0 20px;
            border-top: 1px solid #16213E;
        }
        
        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
        }
        
        .footer-column h3 {
            font-size: 20px;
            margin-bottom: 20px;
            color: #FFE66D;
            font-family: 'Courier New', monospace;
        }
        
        .footer-column ul {
            list-style: none;
        }
        
        .footer-column ul li {
            margin-bottom: 10px;
        }
        
        .footer-column ul li a {
            color: #F7F7F7;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        
        .footer-column ul li a:hover {
            color: #4ECDC4;
        }
        
        .footer-bottom {
            text-align: center;
            margin-top: 30px;
            padding-top: 20px;
            border-top: 1px solid #16213E;
            color: #F7F7F7;
            font-size: 14px;
        }
        
        .cookie-banner {
            position: fixed;
            bottom: 20px;
            left: 20px;
            right: 20px;
            background-color: #16213E;
            border: 1px solid #1A1A2E;
            border-radius: 10px;
            padding: 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            z-index: 1000;
            transform: translateY(150%);
            transition: transform 0.5s ease;
            box-shadow: 0 5px 15px rgba(0,0,0,0.3);
        }
        
        .cookie-banner.active {
            transform: translateY(0);
        }
        
        .cookie-text {
            flex: 1;
            margin-right: 20px;
        }
        
        .cookie-text p {
            font-size: 14px;
            line-height: 1.5;
        }
        
        .cookie-text a {
            color: #4ECDC4;
            text-decoration: none;
        }
        
        .cookie-buttons {
            display: flex;
            gap: 10px;
        }
        
        .cookie-button {
            padding: 10px 20px;
            border-radius: 50px;
            font-size: 14px;
            cursor: pointer;
            transition: all 0.3s ease;
            border: none;
        }
        
        .cookie-accept {
            background-color: #4ECDC4;
            color: #1A1A2E;
            font-weight: bold;
        }
        
        .cookie-accept:hover {
            background-color: #FFE66D;
        }
        
        .cookie-reject {
            background-color: transparent;
            color: #F7F7F7;
            border: 1px solid #F7F7F7;
        }
        
        .cookie-reject:hover {
            background-color: rgba(255, 255, 255, 0.1);
        }
        
        .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: 2000;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
        }
        
        .popup.active {
            opacity: 1;
            visibility: visible;
        }
        
        .popup-content {
            background-color: #16213E;
            padding: 40px;
            border-radius: 15px;
            text-align: center;
            max-width: 500px;
            width: 90%;
            box-shadow: 0 10px 30px rgba(0,0,0,0.3);
            transform: scale(0.7);
            transition: transform 0.3s ease;
        }
        
        .popup.active .popup-content {
            transform: scale(1);
        }
        
        .popup h3 {
            color: #FFE66D;
            margin-bottom: 20px;
            font-size: 24px;
        }
        
        .popup p {
            margin-bottom: 30px;
            line-height: 1.6;
        }
        
        .popup-close {
            background-color: #4ECDC4;
            color: #1A1A2E;
            border: none;
            padding: 12px 25px;
            border-radius: 50px;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .popup-close:hover {
            background-color: #FFE66D;
        }
        
        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }
        
        @keyframes fadeInDown {
            from {
                opacity: 0;
                transform: translateY(-20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        @media (max-width: 768px) {
            .nav-links {
                position: absolute;
                right: 0;
                top: 70px;
                background-color: rgba(26, 26, 46, 0.95);
                width: 100%;
                flex-direction: column;
                align-items: center;
                padding: 20px 0;
                transform: translateY(-150%);
                transition: transform 0.3s ease;
                box-shadow: 0 5px 15px rgba(0,0,0,0.3);
            }
            
            .nav-links.active {
                transform: translateY(0);
            }
            
            .nav-links li {
                margin: 15px 0;
            }
            
            .burger {
                display: block;
            }
            
            .hero h1 {
                font-size: 36px;
            }
            
            .about-content {
                flex-direction: column;
            }
            
            .about-image {
                height: 300px;
                margin-bottom: 30px;
            }
            
            .cookie-banner {
                flex-direction: column;
                text-align: center;
            }
            
            .cookie-text {
                margin-right: 0;
                margin-bottom: 15px;
            }
        }

