.elementor-43256 .elementor-element.elementor-element-67f6b77e{--display:flex;overflow:visible;}.elementor-43256 .elementor-element.elementor-element-2b7cb43{--display:flex;overflow:visible;}/* Start custom CSS for text-editor, class: .elementor-element-8f8c85b */<style>
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Open Sans', Arial, sans-serif;
            line-height: 1.6;
            color: #333;
            background-color: #ffffff;
        }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        /* Header Styling */
        .hero-section {
            background: linear-gradient(135deg, #66d6c0 0%, #a8e85e 100%);
            color: white;
            padding: 80px 0;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        
        .hero-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
            opacity: 0.1;
        }
        
        h1 {
            font-family: 'Montserrat', sans-serif;
            font-weight: 800;
            font-size: 3.2em;
            margin-bottom: 20px;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
            position: relative;
            z-index: 2;
        }
        
        .hero-subtitle {
            font-size: 1.3em;
            margin-bottom: 30px;
            opacity: 0.95;
            position: relative;
            z-index: 2;
        }
        
        .cta-button {
            display: inline-block;
            background: #ffffff;
            color: #66d6c0;
            padding: 15px 35px;
            text-decoration: none;
            border-radius: 50px;
            font-weight: 600;
            font-size: 1.1em;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(0,0,0,0.2);
            position: relative;
            z-index: 2;
        }
        
        .cta-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(0,0,0,0.3);
            color: #4CAF50;
        }
        
        /* Content Sections */
        .content-section {
            padding: 60px 0;
            border-bottom: 1px solid #f0f0f0;
        }
        
        .content-section:nth-child(even) {
            background-color: #fffffe;
        }
        
        h2 {
            font-family: 'Montserrat', sans-serif;
            font-weight: 700;
            font-size: 2.4em;
            color: #66d6c0;
            margin-bottom: 25px;
            position: relative;
        }
        
        h2::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: -10px;
            width: 60px;
            height: 4px;
            background: linear-gradient(90deg, #a8e85e, #66d6c0);
            border-radius: 2px;
        }
        
        h3 {
            font-family: 'Poppins', sans-serif;
            font-weight: 600;
            font-size: 1.8em;
            color: #333;
            margin: 30px 0 20px 0;
        }
        
        p {
            font-size: 1.1em;
            margin-bottom: 20px;
            color: #555;
        }
        
        /* Feature Cards */
        .feature-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin: 40px 0;
        }
        
        .feature-card {
            background: white;
            padding: 30px;
            border-radius: 15px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
            border: 2px solid transparent;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }
        
        .feature-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, #a8e85e, #66d6c0);
        }
        
        .feature-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0,0,0,0.15);
            border-color: #a8e85e;
        }
        
        .feature-icon {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, #66d6c0, #a8e85e);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            color: white;
            margin-bottom: 20px;
        }
        
        /* Comparison Table */
        .comparison-table {
            width: 100%;
            border-collapse: collapse;
            margin: 40px 0;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
            border-radius: 10px;
            overflow: hidden;
        }
        
        .comparison-table th {
            background: linear-gradient(135deg, #66d6c0, #a8e85e);
            color: white;
            padding: 20px;
            font-family: 'Montserrat', sans-serif;
            font-weight: 600;
        }
        
        .comparison-table td {
            padding: 20px;
            border-bottom: 1px solid #f0f0f0;
            background: white;
        }
        
        .comparison-table tr:nth-child(even) td {
            background: #fffffe;
        }
        
        /* Highlight Boxes */
        .highlight-box {
            background: linear-gradient(135deg, rgba(168, 232, 94, 0.1), rgba(102, 214, 192, 0.1));
            border-left: 5px solid #a8e85e;
            padding: 25px;
            margin: 30px 0;
            border-radius: 0 10px 10px 0;
            position: relative;
        }
        
        .highlight-box::before {
            content: '💡';
            position: absolute;
            top: -10px;
            left: 20px;
            background: white;
            padding: 5px 10px;
            border-radius: 20px;
            font-size: 20px;
        }
        
        /* Lists */
        .benefits-list {
            list-style: none;
            padding: 0;
        }
        
        .benefits-list li {
            padding: 12px 0;
            padding-left: 40px;
            position: relative;
            border-bottom: 1px solid #f0f0f0;
        }
        
        .benefits-list li::before {
            content: '✓';
            position: absolute;
            left: 0;
            top: 12px;
            width: 25px;
            height: 25px;
            background: #a8e85e;
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 14px;
            font-weight: bold;
        }
        
        /* Video Container */
        .video-container {
            position: relative;
            width: 100%;
            max-width: 800px;
            margin: 40px auto;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.2);
        }
        
        .video-container iframe {
            width: 100%;
            height: 450px;
            border: none;
        }
        
        /* CTA Sections */
        .cta-section {
            background: linear-gradient(135deg, #66d6c0, #a8e85e);
            color: white;
            text-align: center;
            padding: 60px 0;
            margin: 60px 0;
            border-radius: 20px;
        }
        
        .cta-section h2 {
            color: white;
            margin-bottom: 20px;
        }
        
        .cta-section h2::after {
            background: rgba(255,255,255,0.3);
            left: 50%;
            transform: translateX(-50%);
        }
        
        /* Image Placeholders */
        .image-placeholder {
            width: 100%;
            height: 300px;
            background: linear-gradient(135deg, rgba(168, 232, 94, 0.2), rgba(102, 214, 192, 0.2));
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 30px 0;
            border: 2px dashed #66d6c0;
            color: #66d6c0;
            font-family: 'Montserrat', sans-serif;
            font-weight: 600;
            font-size: 1.2em;
        }
        
        /* Responsive Design */
        @media (max-width: 768px) {
            h1 {
                font-size: 2.2em;
            }
            
            h2 {
                font-size: 2em;
            }
            
            .feature-grid {
                grid-template-columns: 1fr;
            }
            
            .comparison-table {
                font-size: 14px;
            }
            
            .comparison-table th,
            .comparison-table td {
                padding: 15px 10px;
            }
            
            .video-container iframe {
                height: 250px;
            }
        }
        
        /* Smooth scrolling and animations */
        html {
            scroll-behavior: smooth;
        }
        
        .fade-in {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.6s ease;
        }
        
        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }
    </style>/* End custom CSS */