:root {
            --primary: #2C3E50;
            --secondary: #E74C3C;
            --accent: #F1C40F;
            --neutral: #ECF0F1;
            --background: #34495E;
            --text-light: #FFFFFF;
            --text-dark: #2C3E50;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Georgia', serif;
        }

        body {
            background-color: var(--background);
            color: var(--text-light);
            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-color: var(--primary);
            z-index: 1000;
            padding: 15px 0;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        }

        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-size: 28px;
            font-weight: bold;
            color: var(--accent);
            text-decoration: none;
            letter-spacing: 2px;
            text-transform: uppercase;
        }

        .nav-menu {
            display: flex;
            list-style: none;
        }

        .nav-menu li {
            margin-left: 25px;
        }

        .nav-menu a {
            color: var(--text-light);
            text-decoration: none;
            font-size: 16px;
            transition: color 0.3s;
            position: relative;
        }

        .nav-menu a:hover {
            color: var(--accent);
        }

        .nav-menu a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background-color: var(--accent);
            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(--text-light);
            margin: 5px 0;
            transition: all 0.3s ease;
        }

        /* Hero Section */
        .hero {
            height: 100vh;
            background: linear-gradient(rgba(44, 62, 80, 0.7), rgba(44, 62, 80, 0.7)), url('../img/04.webp');
            background-size: cover;
            background-position: center;
            display: flex;
            align-items: center;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .hero-content {
            z-index: 2;
            max-width: 800px;
            margin: 0 auto;
            padding: 0 20px;
            animation: fadeInUp 1s ease;
        }

        .hero h1 {
            font-size: 3.5rem;
            margin-bottom: 20px;
            color: var(--accent);
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
            letter-spacing: 3px;
        }

        .hero p {
            font-size: 1.5rem;
            margin-bottom: 30px;
            color: var(--neutral);
        }

        .btn {
            display: inline-block;
            padding: 15px 35px;
            background-color: var(--secondary);
            color: var(--text-light);
            text-decoration: none;
            border-radius: 5px;
            font-weight: bold;
            font-size: 18px;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .btn:hover {
            background-color: var(--accent);
            color: var(--text-dark);
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
        }

        /* 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;
            color: var(--accent);
            margin-bottom: 15px;
            letter-spacing: 2px;
            position: relative;
            display: inline-block;
        }

        .section-title h2::before {
            right: 100%;
            margin-right: 15px;
        }

        .section-title h2::after {
            left: 100%;
            margin-left: 15px;
        }

        .section-title p {
            font-size: 1.1rem;
            color: var(--neutral);
            max-width: 700px;
            margin: 0 auto;
        }

        /* About Section */
        .about {
            background-color: var(--primary);
        }

        .about-content {
            display: flex;
            align-items: center;
            gap: 50px;
        }

        .about-text {
            flex: 1;
        }

        .about-text h3 {
            font-size: 1.8rem;
            color: var(--accent);
            margin-bottom: 20px;
        }

        .about-text p {
            margin-bottom: 20px;
            color: var(--neutral);
        }

        .about-image {
            flex: 1;
            position: relative;
            overflow: hidden;
            border-radius: 10px;
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
        }

        .about-image img {
            width: 100%;
            height: auto;
            display: block;
            transition: transform 0.5s;
        }

        .about-image:hover img {
            transform: scale(1.05);
        }

        /* Product Description */
        .product {
            background-color: var(--background);
        }

        .product-content {
            display: flex;
            flex-direction: column;
            gap: 40px;
        }

        .product-item {
            display: flex;
            align-items: center;
            gap: 30px;
            background-color: var(--primary);
            padding: 30px;
            border-radius: 10px;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s, box-shadow 0.3s;
        }

        .product-item:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
        }

        .product-item:nth-child(even) {
            flex-direction: row-reverse;
        }

        .product-icon {
            flex: 0 0 100px;
            height: 100px;
            background-color: var(--accent);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            color: var(--text-dark);
        }

        .product-info h3 {
            font-size: 1.5rem;
            color: var(--accent);
            margin-bottom: 10px;
        }

        .product-info p {
            color: var(--neutral);
        }

        /* Prices Section */
        .prices {
            background-color: var(--primary);
        }

        .pricing-container {
            display: flex;
            justify-content: center;
            gap: 30px;
            flex-wrap: wrap;
        }

        .pricing-card {
            flex: 1;
            min-width: 280px;
            max-width: 350px;
            background-color: var(--background);
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
            transition: transform 0.3s, box-shadow 0.3s;
            text-align: center;
        }

        .pricing-card:hover {
            transform: translateY(-15px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
        }

        .pricing-header {
            background-color: var(--secondary);
            padding: 20px;
            color: var(--text-light);
        }

        .pricing-header h3 {
            font-size: 1.8rem;
            margin-bottom: 10px;
        }

        .pricing-price {
            font-size: 2.5rem;
            font-weight: bold;
            color: var(--accent);
            margin: 20px 0;
        }

        .pricing-features {
            padding: 30px;
        }

        .pricing-features ul {
            list-style: none;
            margin-bottom: 30px;
        }

        .pricing-features li {
            padding: 10px 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            color: var(--neutral);
        }

        .pricing-features li:last-child {
            border-bottom: none;
        }

        /* Gallery Section */
        .gallery {
            background-color: var(--background);
        }

        .gallery-container {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 20px;
        }

        .gallery-item {
            position: relative;
            overflow: hidden;
            border-radius: 10px;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
            height: 250px;
        }

        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s;
        }

        .gallery-item:hover img {
            transform: scale(1.1);
        }

        .gallery-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(44, 62, 80, 0.7);
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: opacity 0.3s;
        }

        .gallery-item:hover .gallery-overlay {
            opacity: 1;
        }

        .gallery-overlay p {
            color: var(--text-light);
            font-size: 1.2rem;
            text-align: center;
            padding: 0 20px;
        }

        /* Reviews Section */
        .reviews {
            background-color: var(--primary);
        }

        .reviews-slider {
            position: relative;
            max-width: 800px;
            margin: 0 auto;
            overflow: hidden;
        }

        .reviews-container {
            display: flex;
            transition: transform 0.5s ease;
        }

        .review {
            min-width: 100%;
            padding: 30px;
            background-color: var(--background);
            border-radius: 10px;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
            text-align: center;
        }

        .review-text {
            font-style: italic;
            margin-bottom: 20px;
            color: var(--neutral);
            font-size: 1.1rem;
        }

        .review-author {
            font-weight: bold;
            color: var(--accent);
        }

        .review-controls {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-top: 30px;
        }

        .review-control {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background-color: var(--secondary);
            color: var(--text-light);
            border: none;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            transition: background-color 0.3s;
        }

        .review-control:hover {
            background-color: var(--accent);
            color: var(--text-dark);
        }

        /* FAQ Section */
        .faq {
            background-color: var(--background);
        }

        .faq-container {
            max-width: 800px;
            margin: 0 auto;
        }

        .faq-item {
            margin-bottom: 20px;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }

        .faq-question {
            background-color: var(--primary);
            padding: 20px;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: background-color 0.3s;
        }

        .faq-question:hover {
            background-color: var(--secondary);
        }

        .faq-question h3 {
            color: var(--accent);
            font-size: 1.3rem;
        }

        .faq-toggle {
            font-size: 1.5rem;
            color: var(--accent);
            transition: transform 0.3s;
        }

        .faq-answer {
            background-color: var(--primary);
            padding: 0 20px;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s, padding 0.3s;
        }

        .faq-answer p {
            color: var(--neutral);
            padding: 20px 0;
        }

        .faq-item.active .faq-answer {
            max-height: 500px;
            padding: 0 20px 20px;
        }

        .faq-item.active .faq-toggle {
            transform: rotate(45deg);
        }

        /* Benefits Section */
        .benefits {
            background-color: var(--primary);
        }

        .benefits-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
        }

        .benefit-item {
            background-color: var(--background);
            padding: 30px;
            border-radius: 10px;
            text-align: center;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s, box-shadow 0.3s;
        }

        .benefit-item:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
        }

        .benefit-icon {
            font-size: 3rem;
            color: var(--accent);
            margin-bottom: 20px;
        }

        .benefit-item h3 {
            font-size: 1.5rem;
            color: var(--accent);
            margin-bottom: 15px;
        }

        .benefit-item p {
            color: var(--neutral);
        }

        /* Process Section */
        .process {
            background-color: var(--background);
        }

        .process-container {
            display: flex;
            justify-content: space-between;
            position: relative;
            max-width: 1000px;
            margin: 0 auto;
        }

        .process-container::before {
            content: '';
            position: absolute;
            top: 50px;
            left: 0;
            width: 100%;
            height: 4px;
            background-color: var(--secondary);
            z-index: 1;
        }

        .process-step {
            flex: 1;
            text-align: center;
            position: relative;
            z-index: 2;
        }

        .step-number {
            width: 100px;
            height: 100px;
            background-color: var(--primary);
            border: 4px solid var(--secondary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            font-size: 2rem;
            font-weight: bold;
            color: var(--accent);
        }

        .process-step h3 {
            font-size: 1.3rem;
            color: var(--accent);
            margin-bottom: 10px;
        }

        .process-step p {
            color: var(--neutral);
            padding: 0 10px;
        }

        /* Quality Section */
        .quality {
            background-color: var(--primary);
        }

        .quality-content {
            display: flex;
            align-items: center;
            gap: 50px;
        }

        .quality-text {
            flex: 1;
        }

        .quality-text h3 {
            font-size: 1.8rem;
            color: var(--accent);
            margin-bottom: 20px;
        }

        .quality-text p {
            margin-bottom: 20px;
            color: var(--neutral);
        }

        .quality-image {
            flex: 1;
            position: relative;
            overflow: hidden;
            border-radius: 10px;
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
        }

        .quality-image img {
            width: 100%;
            height: auto;
            display: block;
            transition: transform 0.5s;
        }

        .quality-image:hover img {
            transform: scale(1.05);
        }

        /* Disclaimer Section */
        .disclaimer {
            background-color: var(--background);
            padding: 40px 0;
            text-align: center;
        }

        .disclaimer p {
            color: var(--neutral);
            font-size: 0.9rem;
            max-width: 800px;
            margin: 0 auto;
        }

        /* Footer */
        footer {
            background-color: var(--primary);
            padding: 50px 0 20px;
        }

        .footer-content {
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 30px;
            margin-bottom: 30px;
        }

        .footer-logo {
            flex: 1;
            min-width: 250px;
        }

        .footer-logo h3 {
            font-size: 1.8rem;
            color: var(--accent);
            margin-bottom: 15px;
            letter-spacing: 2px;
        }

        .footer-logo p {
            color: var(--neutral);
            margin-bottom: 20px;
        }

        .footer-links {
            flex: 1;
            min-width: 250px;
        }

        .footer-links h3 {
            font-size: 1.5rem;
            color: var(--accent);
            margin-bottom: 15px;
        }

        .footer-links ul {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 10px;
        }

        .footer-links a {
            color: var(--neutral);
            text-decoration: none;
            transition: color 0.3s;
        }

        .footer-links a:hover {
            color: var(--accent);
        }

        .footer-contact {
            flex: 1;
            min-width: 250px;
        }

        .footer-contact h3 {
            font-size: 1.5rem;
            color: var(--accent);
            margin-bottom: 15px;
        }

        .footer-contact p {
            color: var(--neutral);
            margin-bottom: 10px;
        }

        .footer-bottom {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }

        .footer-bottom p {
            color: var(--neutral);
            font-size: 0.9rem;
        }

        /* Cookie Popup */
        .cookie-popup {
            position: fixed;
            bottom: 20px;
            left: 20px;
            right: 20px;
            background-color: var(--primary);
            border-radius: 10px;
            padding: 20px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
            z-index: 1000;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 20px;
            transform: translateY(150%);
            transition: transform 0.5s ease;
        }

        .cookie-popup.show {
            transform: translateY(0);
        }

        .cookie-text {
            flex: 1;
            min-width: 250px;
            color: var(--neutral);
        }

        .cookie-text a {
            color: var(--accent);
            text-decoration: none;
        }

        .cookie-buttons {
            display: flex;
            gap: 10px;
        }

        .cookie-btn {
            padding: 10px 20px;
            border: none;
            border-radius: 5px;
            cursor: pointer;
            font-weight: bold;
            transition: all 0.3s;
        }

        .cookie-accept {
            background-color: var(--secondary);
            color: var(--text-light);
        }

        .cookie-accept:hover {
            background-color: var(--accent);
            color: var(--text-dark);
        }

        .cookie-reject {
            background-color: transparent;
            color: var(--neutral);
            border: 1px solid var(--neutral);
        }

        .cookie-reject:hover {
            background-color: rgba(255, 255, 255, 0.1);
        }

        /* Contact Form Popup */
        .contact-popup {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.7);
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 2000;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s;
        }

        .contact-popup.show {
            opacity: 1;
            visibility: visible;
        }

        .contact-form {
            background-color: var(--primary);
            padding: 40px;
            border-radius: 10px;
            width: 90%;
            max-width: 500px;
            position: relative;
            transform: scale(0.7);
            transition: transform 0.3s;
        }

        .contact-popup.show .contact-form {
            transform: scale(1);
        }

        .close-form {
            position: absolute;
            top: 15px;
            right: 15px;
            width: 30px;
            height: 30px;
            background-color: var(--secondary);
            color: var(--text-light);
            border: none;
            border-radius: 50%;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            transition: background-color 0.3s;
        }

        .close-form:hover {
            background-color: var(--accent);
            color: var(--text-dark);
        }

        .contact-form h3 {
            font-size: 1.8rem;
            color: var(--accent);
            margin-bottom: 20px;
            text-align: center;
        }

        .form-group {
            margin-bottom: 20px;
        }

        .form-group label {
            display: block;
            margin-bottom: 5px;
            color: var(--neutral);
        }

        .form-group input {
            width: 100%;
            padding: 12px;
            background-color: var(--background);
            border: none;
            border-radius: 5px;
            color: var(--text-light);
            font-size: 16px;
        }

        .form-group input:focus {
            outline: none;
            box-shadow: 0 0 0 2px var(--accent);
        }

        .submit-btn {
            width: 100%;
            padding: 15px;
            background-color: var(--secondary);
            color: var(--text-light);
            border: none;
            border-radius: 5px;
            font-size: 16px;
            font-weight: bold;
            cursor: pointer;
            transition: background-color 0.3s;
        }

        .submit-btn:hover {
            background-color: var(--accent);
            color: var(--text-dark);
        }

        /* Success Message */
        .success-message {
            position: fixed;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            background-color: var(--primary);
            padding: 30px;
            border-radius: 10px;
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
            z-index: 3000;
            text-align: center;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s;
        }

        .success-message.show {
            opacity: 1;
            visibility: visible;
        }

        .success-message h3 {
            font-size: 1.8rem;
            color: var(--accent);
            margin-bottom: 15px;
        }

        .success-message p {
            color: var(--neutral);
            margin-bottom: 20px;
        }

        .success-btn {
            padding: 10px 20px;
            background-color: var(--secondary);
            color: var(--text-light);
            border: none;
            border-radius: 5px;
            cursor: pointer;
            font-weight: bold;
            transition: background-color 0.3s;
        }

        .success-btn:hover {
            background-color: var(--accent);
            color: var(--text-dark);
        }

        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .fade-in {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.6s, transform 0.6s;
        }

        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* Marquee */
        .marquee {
            background-color: var(--secondary);
            color: var(--text-light);
            padding: 15px 0;
            overflow: hidden;
            white-space: nowrap;
            box-sizing: border-box;
        }

        .marquee-content {
            display: inline-block;
            padding-left: 100%;
            animation: marquee 20s linear infinite;
        }

        @keyframes marquee {
            0% {
                transform: translate(0, 0);
            }
            100% {
                transform: translate(-100%, 0);
            }
        }

        /* Responsive */
        @media (max-width: 992px) {
            .hero h1 {
                font-size: 2.8rem;
            }

            .hero p {
                font-size: 1.2rem;
            }

            .about-content, .quality-content {
                flex-direction: column;
            }

            .process-container {
                flex-direction: column;
                gap: 30px;
            }

            .process-container::before {
                width: 4px;
                height: 100%;
                top: 0;
                left: 50%;
                transform: translateX(-50%);
            }
        }

        @media (max-width: 768px) {
            .nav-menu {
                position: fixed;
                top: 70px;
                left: -100%;
                width: 100%;
                height: calc(100vh - 70px);
                background-color: var(--primary);
                flex-direction: column;
                align-items: center;
                justify-content: start;
                padding-top: 50px;
                transition: left 0.5s;
            }

            .nav-menu.active {
                left: 0;
            }

            .nav-menu 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;
            }

            .hero p {
                font-size: 1rem;
            }

            .section-title h2 {
                font-size: 2rem;
            }

            .pricing-container {
                flex-direction: column;
                align-items: center;
            }

            .footer-content {
                flex-direction: column;
            }

            .product-item{
                flex-direction: column !important;
            }
        }

        @media (max-width: 576px) {
            .hero h1 {
                font-size: 1.8rem;
            }

            .section-title h2::before, .section-title h2::after {
                width: 30px;
            }

            .cookie-popup {
                flex-direction: column;
                text-align: center;
            }

            .cookie-buttons {
                width: 100%;
                justify-content: center;
            }
        }

