* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        :root {
            --primary: #00BCD4;
            --secondary: #4DB6AC;
            --accent: #FF9800;
            --background: #212121;
            --text: #FFFFFF;
            --card-bg: rgba(255, 255, 255, 0.05);
            --hover: rgba(255, 255, 255, 0.1);
        }
        
        body {
            font-family: 'Roboto', sans-serif;
            background-color: var(--background);
            color: var(--text);
            line-height: 1.6;
            overflow-x: hidden;
        }
        
        .container {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }
        
        /* Header Styles */
        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            background: rgba(33, 33, 33, 0.95);
            backdrop-filter: blur(10px);
            z-index: 1000;
            padding: 15px 0;
            box-shadow: 0 2px 20px rgba(0, 188, 212, 0.3);
        }
        
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .logo {
            font-size: 24px;
            font-weight: bold;
            color: var(--primary);
            text-decoration: none;
            letter-spacing: 1px;
        }
        
        .logo span {
            color: var(--accent);
        }
        
        nav ul {
            display: flex;
            list-style: none;
        }
        
        nav ul li {
            margin-left: 25px;
        }
        
        nav ul li a {
            color: var(--text);
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s ease;
            position: relative;
        }
        
        nav ul li a:hover {
            color: var(--primary);
        }
        
        nav ul li a::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: -5px;
            left: 0;
            background-color: var(--primary);
            transition: width 0.3s ease;
        }
        
        nav ul li a:hover::after {
            width: 100%;
        }
        
        .burger {
            display: none;
            cursor: pointer;
        }
        
        .burger div {
            width: 25px;
            height: 3px;
            background-color: var(--text);
            margin: 5px 0;
            transition: all 0.3s ease;
        }
        
        /* Hero Section */
        .hero {
            height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(rgba(33, 33, 33, 0.7), rgba(33, 33, 33, 0.9)), url('../img/10.webp');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            position: relative;
            overflow: hidden;
        }
        
        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle at 20% 50%, rgba(0, 188, 212, 0.2) 0%, transparent 50%),
                        radial-gradient(circle at 80% 50%, rgba(255, 152, 0, 0.2) 0%, transparent 50%);
            z-index: 1;
        }
        
        .hero-content {
            position: relative;
            z-index: 2;
            text-align: center;
            max-width: 800px;
            animation: fadeInUp 1s ease;
        }
        
        .hero h1 {
            font-size: 3.5rem;
            margin-bottom: 20px;
            color: var(--text);
            text-shadow: 0 0 20px rgba(0, 188, 212, 0.5);
            font-weight: 300;
            letter-spacing: 1px;
        }
        
        .hero p {
            font-size: 1.2rem;
            margin-bottom: 30px;
            color: rgba(255, 255, 255, 0.9);
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }
        
        .btn {
            display: inline-block;
            padding: 12px 30px;
            background: var(--primary);
            color: var(--text);
            text-decoration: none;
            border-radius: 30px;
            font-weight: 500;
            transition: all 0.3s ease;
            box-shadow: 0 5px 15px rgba(0, 188, 212, 0.3);
        }
        
        .btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(0, 188, 212, 0.5);
        }
        
        /* Section Styles */
        section {
            padding: 80px 0;
            position: relative;
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 50px;
            position: relative;
        }
        
        .section-title h2 {
            font-size: 2.5rem;
            margin-bottom: 15px;
            color: var(--primary);
            font-weight: 300;
            letter-spacing: 1px;
        }
        
        .section-title p {
            font-size: 1.1rem;
            color: rgba(255, 255, 255, 0.8);
            max-width: 700px;
            margin: 0 auto;
        }
        
        /* About Section */
        .about-content {
            display: flex;
            align-items: center;
            gap: 50px;
        }
        
        .about-text {
            flex: 1;
        }
        
        .about-text h3 {
            font-size: 1.8rem;
            margin-bottom: 20px;
            color: var(--accent);
            font-weight: 400;
        }
        
        .about-text p {
            margin-bottom: 20px;
            color: rgba(255, 255, 255, 0.9);
        }
        
        .about-image {
            flex: 1;
            position: relative;
            overflow: hidden;
            border-radius: 5px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        }
        
        .about-image img {
            width: 100%;
            height: auto;
            display: block;
            transition: transform 0.5s ease;
        }
        
        .about-image:hover img {
            transform: scale(1.05);
        }
        
        /* Why Us Section */
        .why-us-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
        }
        
        .why-us-item {
            text-align: center;
            padding: 30px;
            background: var(--card-bg);
            border-radius: 5px;
            border: 1px solid rgba(255, 255, 255, 0.05);
            transition: all 0.3s ease;
        }
        
        .why-us-item:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 188, 212, 0.2);
            background: var(--hover);
        }
        
        .why-us-icon {
            width: 60px;
            height: 60px;
            margin: 0 auto 20px;
            background: var(--primary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
        }
        
        .why-us-item h3 {
            font-size: 1.3rem;
            margin-bottom: 15px;
            color: var(--accent);
            font-weight: 400;
        }
        
        .why-us-item p {
            color: rgba(255, 255, 255, 0.8);
            font-size: 0.95rem;
        }
        
        /* Product Description */
        .product-cards {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }
        
        .product-card {
            background: var(--card-bg);
            border-radius: 5px;
            padding: 30px;
            border: 1px solid rgba(255, 255, 255, 0.05);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }
        
        .product-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 5px;
            height: 100%;
            background: var(--primary);
        }
        
        .product-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 188, 212, 0.2);
            background: var(--hover);
        }
        
        .product-card h3 {
            font-size: 1.5rem;
            margin-bottom: 15px;
            color: var(--accent);
            font-weight: 400;
        }
        
        .product-card p {
            margin-bottom: 20px;
            color: rgba(255, 255, 255, 0.9);
        }
        
        /* Prices Section */
        .pricing-cards {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }
        
        .pricing-card {
            background: var(--card-bg);
            border-radius: 5px;
            padding: 30px;
            text-align: center;
            border: 1px solid rgba(255, 255, 255, 0.05);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }
        
        .pricing-card.featured {
            transform: scale(1.05);
            box-shadow: 0 15px 30px rgba(255, 152, 0, 0.3);
            border: 1px solid var(--accent);
        }
        
        .pricing-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 188, 212, 0.2);
        }
        
        .pricing-card.featured:hover {
            transform: scale(1.05) translateY(-10px);
        }
        
        .pricing-card h3 {
            font-size: 1.8rem;
            margin-bottom: 15px;
            color: var(--primary);
            font-weight: 400;
        }
        
        .pricing-card .price {
            font-size: 2.5rem;
            font-weight: 300;
            margin: 20px 0;
            color: var(--accent);
        }
        
        .pricing-card .price span {
            font-size: 1rem;
            color: rgba(255, 255, 255, 0.7);
        }
        
        .pricing-card ul {
            list-style: none;
            margin-bottom: 30px;
            text-align: left;
        }
        
        .pricing-card ul li {
            padding: 10px 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
            color: rgba(255, 255, 255, 0.9);
        }
        
        .pricing-card ul li:last-child {
            border-bottom: none;
        }
        
        /* Gallery Section */
        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 20px;
        }
        
        .gallery-item {
            position: relative;
            overflow: hidden;
            border-radius: 5px;
            height: 250px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
        }
        
        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .gallery-item:hover img {
            transform: scale(1.1);
        }
        
        .gallery-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to top, rgba(33, 33, 33, 0.8), transparent);
            display: flex;
            align-items: flex-end;
            padding: 20px;
            opacity: 0;
            transition: opacity 0.3s ease;
        }
        
        .gallery-item:hover .gallery-overlay {
            opacity: 1;
        }
        
        .gallery-overlay h3 {
            font-size: 1.2rem;
            color: var(--text);
            font-weight: 400;
        }
        
        /* Reviews Section */
        .reviews-container {
            position: relative;
            overflow: hidden;
        }
        
        .reviews-slider {
            display: flex;
            transition: transform 0.5s ease;
        }
        
        .review-card {
            min-width: 100%;
            padding: 0 15px;
        }
        
        .review-content {
            background: var(--card-bg);
            border-radius: 5px;
            padding: 30px;
            border: 1px solid rgba(255, 255, 255, 0.05);
            max-width: 800px;
            margin: 0 auto;
        }
        
        .review-header {
            display: flex;
            align-items: center;
            margin-bottom: 20px;
        }
        
        .review-avatar {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            overflow: hidden;
            margin-right: 20px;
            border: 2px solid var(--primary);
        }
        
        .review-avatar img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .review-info h4 {
            font-size: 1.2rem;
            margin-bottom: 5px;
            color: var(--accent);
            font-weight: 400;
        }
        
        .review-info .rating {
            color: var(--primary);
        }
        
        .review-text {
            font-style: italic;
            color: rgba(255, 255, 255, 0.9);
            line-height: 1.8;
        }
        
        .review-nav {
            display: flex;
            justify-content: center;
            margin-top: 30px;
            gap: 15px;
        }
        
        .review-nav button {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: var(--card-bg);
            border: 1px solid rgba(255, 255, 255, 0.1);
            color: var(--text);
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .review-nav button:hover {
            background: var(--hover);
            transform: scale(1.1);
        }
        
        /* FAQ Section */
        .faq-container {
            max-width: 800px;
            margin: 0 auto;
        }
        
        .faq-item {
            background: var(--card-bg);
            border-radius: 5px;
            margin-bottom: 15px;
            overflow: hidden;
            border: 1px solid rgba(255, 255, 255, 0.05);
        }
        
        .faq-question {
            padding: 20px;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: all 0.3s ease;
        }
        
        .faq-question:hover {
            background: var(--hover);
        }
        
        .faq-question h3 {
            font-size: 1.2rem;
            color: var(--primary);
            font-weight: 400;
        }
        
        .faq-icon {
            transition: transform 0.3s ease;
        }
        
        .faq-item.active .faq-icon {
            transform: rotate(180deg);
        }
        
        .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 {
            padding: 0 20px 20px;
            max-height: 300px;
        }
        
        .faq-answer p {
            color: rgba(255, 255, 255, 0.9);
        }
        
        /* Benefits Section */
        .benefits-content {
            display: flex;
            align-items: center;
            gap: 50px;
        }
        
        .benefits-text {
            flex: 1;
        }
        
        .benefits-text h3 {
            font-size: 1.8rem;
            margin-bottom: 20px;
            color: var(--accent);
            font-weight: 400;
        }
        
        .benefits-text ul {
            list-style: none;
            margin-bottom: 20px;
        }
        
        .benefits-text ul li {
            margin-bottom: 15px;
            padding-left: 30px;
            position: relative;
            color: rgba(255, 255, 255, 0.9);
        }
        
        .benefits-text ul li::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: var(--primary);
            font-weight: bold;
        }
        
        .benefits-image {
            flex: 1;
            position: relative;
            overflow: hidden;
            border-radius: 5px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        }
        
        .benefits-image img {
            width: 100%;
            height: auto;
            display: block;
            transition: transform 0.5s ease;
        }
        
        .benefits-image:hover img {
            transform: scale(1.05);
        }
        
        /* Contact Form */
        .contact-form {
            max-width: 600px;
            margin: 0 auto;
            background: var(--card-bg);
            border-radius: 5px;
            padding: 40px;
            border: 1px solid rgba(255, 255, 255, 0.05);
        }
        
        .form-group {
            margin-bottom: 20px;
        }
        
        .form-group label {
            display: block;
            margin-bottom: 8px;
            color: var(--primary);
            font-weight: 500;
        }
        
        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 12px 15px;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 3px;
            color: var(--text);
            font-size: 1rem;
            transition: all 0.3s ease;
        }
        
        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--primary);
            background: rgba(255, 255, 255, 0.08);
        }
        
        .form-group textarea {
            resize: vertical;
            min-height: 120px;
        }
        
        .form-submit {
            text-align: center;
        }
        
        /* Footer */
        footer {
            background: rgba(33, 33, 33, 0.9);
            padding: 50px 0 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.05);
        }
        
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-bottom: 30px;
        }
        
        .footer-column h3 {
            font-size: 1.3rem;
            margin-bottom: 20px;
            color: var(--primary);
            font-weight: 400;
        }
        
        .footer-column ul {
            list-style: none;
        }
        
        .footer-column ul li {
            margin-bottom: 10px;
        }
        
        .footer-column ul li a {
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            transition: all 0.3s ease;
        }
        
        .footer-column ul li a:hover {
            color: var(--primary);
            padding-left: 5px;
        }
        
        .footer-contact p {
            margin-bottom: 10px;
            color: rgba(255, 255, 255, 0.7);
        }
        
        .footer-bottom {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.05);
            color: rgba(255, 255, 255, 0.5);
        }
        
        /* Disclaimer */
        .disclaimer {
            background: rgba(0, 188, 212, 0.1);
            border-radius: 5px;
            padding: 20px;
            margin: 50px 0;
            border-left: 4px solid var(--primary);
        }
        
        .disclaimer p {
            color: rgba(255, 255, 255, 0.8);
            font-size: 0.9rem;
        }
        
        /* Cookie Notification */
        .cookie-notification {
            position: fixed;
            bottom: 20px;
            left: 20px;
            right: 20px;
            background: rgba(33, 33, 33, 0.95);
            backdrop-filter: blur(10px);
            border-radius: 5px;
            padding: 20px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
            z-index: 1000;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 20px;
            transform: translateY(150%);
            transition: transform 0.5s ease;
        }
        
        .cookie-notification.show {
            transform: translateY(0);
        }
        
        .cookie-text {
            flex: 1;
            color: rgba(255, 255, 255, 0.9);
            font-size: 0.9rem;
        }
        
        .cookie-text a {
            color: var(--primary);
            text-decoration: none;
        }
        
        .cookie-buttons {
            display: flex;
            gap: 10px;
        }
        
        .cookie-btn {
            padding: 8px 16px;
            border: none;
            border-radius: 3px;
            cursor: pointer;
            font-weight: 500;
            transition: all 0.3s ease;
        }
        
        .cookie-accept {
            background: var(--primary);
            color: var(--text);
        }
        
        .cookie-accept:hover {
            background: var(--secondary);
        }
        
        .cookie-reject {
            background: transparent;
            color: var(--text);
            border: 1px solid rgba(255, 255, 255, 0.3);
        }
        
        .cookie-reject:hover {
            background: rgba(255, 255, 255, 0.1);
        }
        
        /* Popup */
        .popup {
            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 ease;
        }
        
        .popup.show {
            opacity: 1;
            visibility: visible;
        }
        
        .popup-content {
            background: var(--background);
            border-radius: 5px;
            padding: 40px;
            max-width: 500px;
            width: 90%;
            text-align: center;
            border: 1px solid rgba(255, 255, 255, 0.1);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
            transform: scale(0.8);
            transition: transform 0.3s ease;
        }
        
        .popup.show .popup-content {
            transform: scale(1);
        }
        
        .popup h3 {
            font-size: 1.8rem;
            margin-bottom: 20px;
            color: var(--primary);
            font-weight: 400;
        }
        
        .popup p {
            margin-bottom: 30px;
            color: rgba(255, 255, 255, 0.9);
        }
        
        .popup-close {
            background: var(--primary);
            color: var(--text);
            border: none;
            border-radius: 3px;
            padding: 10px 25px;
            cursor: pointer;
            font-weight: 500;
            transition: all 0.3s ease;
        }
        
        .popup-close:hover {
            background: var(--secondary);
        }
        
        /* Marquee */
        .marquee {
            overflow: hidden;
            white-space: nowrap;
            background: rgba(0, 188, 212, 0.1);
            padding: 15px 0;
            margin: 30px 0;
        }
        
        .marquee-content {
            display: inline-block;
            animation: marquee 20s linear infinite;
        }
        
        .marquee-content span {
            margin: 0 30px;
            color: var(--primary);
            font-weight: 500;
        }
        
        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        @keyframes marquee {
            0% {
                transform: translateX(0);
            }
            100% {
                transform: translateX(-50%);
            }
        }
        
        /* Responsive */
        @media (max-width: 992px) {
            .hero h1 {
                font-size: 2.8rem;
            }
            
            .about-content {
                flex-direction: column;
            }
            
            .benefits-content {
                flex-direction: column;
            }
        }
        
        @media (max-width: 768px) {
            nav ul {
                position: fixed;
                top: 70px;
                left: 0;
                width: 100%;
                height: calc(100vh - 70px);
                background: rgba(33, 33, 33, 0.95);
                flex-direction: column;
                align-items: center;
                justify-content: flex-start;
                padding-top: 50px;
                transform: translateX(-100%);
                transition: transform 0.5s ease;
            }
            
            nav ul.active {
                transform: translateX(0);
            }
            
            nav ul li {
                margin: 15px 0;
            }
            
            .burger {
                display: block;
            }
            
            .burger.active div:nth-child(1) {
                transform: rotate(-45deg) translate(-5px, 6px);
            }
            
            .burger.active div:nth-child(2) {
                opacity: 0;
            }
            
            .burger.active div:nth-child(3) {
                transform: rotate(45deg) translate(-5px, -6px);
            }
            
            .hero h1 {
                font-size: 2.2rem;
            }
            
            .section-title h2 {
                font-size: 2rem;
            }
            
            .cookie-notification {
                flex-direction: column;
                text-align: center;
            }
        }
        
        @media (max-width: 576px) {
            .hero h1 {
                font-size: 1.8rem;
            }
            
            .section-title h2 {
                font-size: 1.8rem;
            }
            
            .pricing-card.featured {
                transform: scale(1);
            }
            
            .pricing-card.featured:hover {
                transform: translateY(-10px);
            }
        }

