  :root {
            --primary-color: #c9575c;
            --secondary-color: #d87a7e;
            --accent-color: #f8b500;
            --light-color: #f8f2f2;
            --dark-color: #3a2e2e;
            --text-color: #4a3c3c;
            --nature-green: #5a8c5a;
            --nature-brown: #8c6d46;
        }
        
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            color: var(--text-color);
            line-height: 1.6;
            scroll-behavior: smooth;
            background-color: #fefefe;
            overflow-x: hidden;
        }
        
        .hero-section {
            min-height: 100vh;
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            display: flex;
            align-items: center;
            position: relative;
            color: white;
            padding: 40px 0;
        }
        
        .hero-content {
            max-width: 100%;
            padding: 40px;
            background: rgba(255, 255, 255, 0.95);
            border-radius: 15px;
            box-shadow: 0 15px 40px rgba(0,0,0,0.2);
            color: var(--text-color);
            position: relative;
            z-index: 2;
        }
        
        .product-showcase {
            padding: 40px 0;
            background-color: transparent;
            position: relative;
        }
        
        .product-image-container {
            position: relative;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 15px 40px rgba(0,0,0,0.15);
            transition: transform 0.4s;
        }
        
        .product-image {
            width: 100%;
            transition: transform 0.5s;
        }
        
        .product-image-container:hover {
            transform: translateY(-10px);
        }
        
        .product-image-container:hover .product-image {
            transform: scale(1.05);
        }
        
        .product-badge {
            position: absolute;
            top: 20px;
            right: 20px;
            background: var(--primary-color);
            color: white;
            padding: 8px 15px;
            border-radius: 30px;
            font-weight: 600;
            font-size: 0.9rem;
            z-index: 2;
        }
        
        .product-title {
            color: var(--primary-color);
            font-weight: 800;
            margin-bottom: 20px;
            font-size: 2.5rem;
            position: relative;
            display: inline-block;
        }
        
        .product-title:after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 80px;
            height: 4px;
            background-color: var(--accent-color);
            border-radius: 2px;
        }
        
        .product-description {
            font-size: 1.15rem;
            margin-bottom: 25px;
            color: var(--text-color);
        }
        
        .feature-list {
            list-style: none;
            padding: 0;
            margin-bottom: 30px;
        }
        
        .feature-list li {
            margin-bottom: 12px;
            padding-left: 35px;
            position: relative;
            font-size: 1.05rem;
        }
        
        .feature-list li:before {
            content: "✓";
            position: absolute;
            left: 0;
            color: var(--primary-color);
            font-weight: bold;
            font-size: 1.2rem;
            background: var(--light-color);
            width: 25px;
            height: 25px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .btn-buy {
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            border: none;
            color: white;
            font-weight: bold;
            padding: 15px 45px;
            font-size: 1.2rem;
            border-radius: 50px;
            transition: all 0.3s;
            box-shadow: 0 5px 15px rgba(201, 87, 92, 0.3);
            position: relative;
            overflow: hidden;
        }
        
        .btn-buy:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(201, 87, 92, 0.4);
            color: white;
        }
        
        .btn-buy:after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(255,255,255,0.1);
            transform: translateX(-100%);
            transition: transform 0.4s;
        }
        
        .btn-buy:hover:after {
            transform: translateX(0);
        }
        
        .section-title {
            position: relative;
            margin-bottom: 50px;
            padding-bottom: 15px;
            text-align: center;
            font-weight: 700;
            color: var(--dark-color);
        }
        
        .section-title:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background-color: var(--primary-color);
            border-radius: 2px;
        }
        
        .benefits-section {
            padding: 100px 0;
            background: linear-gradient(135deg, var(--light-color) 0%, #f8f8f8 100%);
            position: relative;
        }
        
        .benefit-box {
            background: white;
            border-radius: 12px;
            padding: 30px 25px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.08);
            height: 100%;
            transition: all 0.4s;
            border-top: 4px solid var(--primary-color);
            position: relative;
            overflow: hidden;
        }
        
        .benefit-box:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
        }
        
        .benefit-box:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 35px rgba(0,0,0,0.12);
        }
        
        .benefit-icon {
            font-size: 2.8rem;
            color: var(--primary-color);
            margin-bottom: 20px;
            background: var(--light-color);
            width: 80px;
            height: 80px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            margin-left: auto;
            margin-right: auto;
        }
        
        .use-cases-section {
            padding: 100px 0;
            background-color: white;
            position: relative;
        }
        
        .use-case-item {
            text-align: center;
            padding: 30px 20px;
            background: white;
            border-radius: 12px;
            box-shadow: 0 8px 25px rgba(0,0,0,0.06);
            transition: all 0.3s;
            height: 100%;
            border: 1px solid rgba(0,0,0,0.05);
        }
        
        .use-case-item:hover {
            transform: translateY(-8px);
            box-shadow: 0 12px 30px rgba(0,0,0,0.1);
        }
        
        .use-case-icon {
            font-size: 3.5rem;
            color: var(--primary-color);
            margin-bottom: 20px;
            background: var(--light-color);
            width: 90px;
            height: 90px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            margin-left: auto;
            margin-right: auto;
        }
        
        .testimonials-section {
            padding: 100px 0;
            background: linear-gradient(135deg, var(--light-color) 0%, #f8f8f8 100%);
            position: relative;
        }
        
        .testimonial-card {
            background: white;
            border-radius: 12px;
            padding: 30px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.08);
            height: 100%;
            position: relative;
            border-left: 5px solid var(--primary-color);
        }
        
        .testimonial-card:before {
            content: "";
            position: absolute;
            top: 20px;
            right: 25px;
            font-size: 4rem;
            color: var(--light-color);
            font-family: Georgia, serif;
            line-height: 1;
        }
        
        .customer-avatar {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            object-fit: cover;
            border: 3px solid var(--light-color);
        }
        
        .cta-section {
            padding: 100px 0;
            background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7));
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            color: white;
            text-align: center;
        }
        
        .cta-title {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 20px;
        }
        
        .cta-description {
            font-size: 1.2rem;
            margin-bottom: 40px;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }
        
        .logo {
            font-weight: 800;
            font-size: 1.8rem;
            color: var(--primary-color);
            margin-bottom: 20px;
            display: inline-block;
        }
        
        .logo i {
            margin-right: 10px;
        }
        
        .hero-logo {
            font-weight: 800;
            font-size: 2.2rem;
            color: white;
            margin-bottom: 30px;
            display: inline-block;
            text-shadow: 0 2px 10px rgba(0,0,0,0.3);
        }
        
        .hero-logo i {
            margin-right: 10px;
        }
        
        .scroll-indicator {
            position: absolute;
            bottom: 30px;
            left: 50%;
            transform: translateX(-50%);
            text-align: center;
            color: white;
        }
        
        .scroll-indicator i {
            animation: bounce 2s infinite;
            font-size: 1.5rem;
        }

        .faq-section .accordion-button:not(.collapsed) {
            background-color: #c9575c !important;
            color: white !important;
            box-shadow: none;
        }
    .faq-section .accordion-button:focus {
        border-color: #c9575c;
        box-shadow: 0 0 0 0.25rem rgba(201, 87, 92, 0.25);
    }
    .faq-section .accordion-body {
        background-color: white;
        border-left: 3px solid #c9575c;
    }
        
        @keyframes bounce {
            0%, 20%, 50%, 80%, 100% {
                transform: translateY(0);
            }
            40% {
                transform: translateY(-10px);
            }
            60% {
                transform: translateY(-5px);
            }
        }
        
        .scene-decoration {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 150px;
            background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 120" preserveAspectRatio="none"><path d="M0,0V46.29c47.79,22.2,103.59,32.17,158,28,70.36-5.37,136.33-33.31,206.8-37.5C438.64,32.43,512.34,53.67,583,72.05c69.27,18,138.3,24.88,209.4,13.08,36.15-6,69.85-17.84,104.45-29.34C989.49,25,1113-14.29,1200,52.47V0Z" opacity=".25" fill="%23ffffff"></path><path d="M0,0V15.81C13,36.92,27.64,56.86,47.69,72.05,99.41,111.27,165,111,224.58,91.58c31.15-10.15,60.09-26.07,89.67-39.8,40.92-19,84.73-46,130.83-49.67,36.26-2.85,70.9,9.42,98.6,31.56,31.77,25.39,62.32,62,103.63,73,40.44,10.79,81.35-6.69,119.13-24.28s75.16-39,116.92-43.05c59.73-5.85,113.28,22.88,168.9,38.84,30.2,8.66,59,6.17,87.09-7.5,22.43-10.89,48-26.93,60.65-49.24V0Z" opacity=".5" fill="%23ffffff"></path><path d="M0,0V5.63C149.93,59,314.09,71.32,475.83,42.57c43-7.64,84.23-20.12,127.61-26.46,59-8.63,112.48,12.24,165.56,35.4C827.93,77.22,886,95.24,951.2,90c86.53-7,172.46-45.71,248.8-84.81V0Z" fill="%23ffffff"></path></svg>');
            background-size: cover;
            z-index: 1;
        }
        
        .nature-scene {
            position: relative;
            padding: 130px 0;
            background-color: #fff;
            overflow: hidden;
        }
        
        .nature-scene:before {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 150px;
        }
        
        .scene-content {
            position: relative;
            z-index: 2;
        }
        
        .scene-image {
            border-radius: 15px;
            box-shadow: 0 15px 40px rgba(0,0,0,0.15);
            overflow: hidden;
        }
        
        @media (max-width: 768px) {
            .hero-content {
                padding: 30px 20px;
            }
            
            .product-title {
                font-size: 2rem;
            }
            
            .cta-title {
                font-size: 2rem;
            }
        }


