.elementor-43269 .elementor-element.elementor-element-67f6b77e{--display:flex;overflow:visible;}.elementor-43269 .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', 'Lato', Arial, sans-serif;
            line-height: 1.6;
            color: #333;
            background: linear-gradient(135deg, #feffff 0%, #fffffe 100%);
        }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        .hero-section {
            background: linear-gradient(135deg, #66d6c0 0%, #a8e85e 100%);
            color: white;
            padding: 60px 0;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        
        .hero-section::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
            animation: pulse 4s ease-in-out infinite;
        }
        
        @keyframes pulse {
            0%, 100% { transform: scale(1); opacity: 0.5; }
            50% { transform: scale(1.1); opacity: 0.8; }
        }
        
        h1 {
            font-family: 'Montserrat', sans-serif;
            font-weight: 800;
            font-size: 3.5rem;
            margin-bottom: 20px;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
            position: relative;
            z-index: 2;
        }
        
        .hero-subtitle {
            font-size: 1.3rem;
            margin-bottom: 30px;
            position: relative;
            z-index: 2;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
        }
        
        .content-section {
            padding: 60px 0;
            position: relative;
        }
        
        .content-section:nth-child(even) {
            background: rgba(168, 232, 94, 0.05);
        }
        
        h2 {
            font-family: 'Montserrat', sans-serif;
            font-weight: 700;
            font-size: 2.5rem;
            color: #2c5530;
            margin-bottom: 30px;
            text-align: center;
            position: relative;
        }
        
        h2::after {
            content: '';
            display: block;
            width: 80px;
            height: 4px;
            background: linear-gradient(90deg, #a8e85e, #66d6c0);
            margin: 15px auto;
            border-radius: 2px;
        }
        
        h3 {
            font-family: 'Poppins', sans-serif;
            font-weight: 600;
            font-size: 1.8rem;
            color: #66d6c0;
            margin: 40px 0 20px;
            font-style: italic;
        }
        
        p {
            font-size: 1.1rem;
            margin-bottom: 20px;
            text-align: justify;
            max-width: 900px;
            margin-left: auto;
            margin-right: auto;
        }
        
        .highlight-text {
            background: linear-gradient(120deg, #a8e85e 0%, #66d6c0 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            font-weight: 600;
        }
        
        .image-placeholder {
            width: 100%;
            max-width: 600px;
            height: 400px;
            background: linear-gradient(135deg, #a8e85e 0%, #66d6c0 100%);
            border-radius: 15px;
            margin: 40px auto;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.2rem;
            font-weight: 600;
            text-align: center;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            transition: transform 0.3s ease;
        }
        
        .image-placeholder:hover {
            transform: translateY(-5px);
        }
        
        .comparison-table {
            width: 100%;
            max-width: 800px;
            margin: 40px auto;
            border-collapse: collapse;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }
        
        .comparison-table th {
            background: linear-gradient(135deg, #66d6c0 0%, #a8e85e 100%);
            color: white;
            padding: 20px;
            font-size: 1.2rem;
            font-weight: 600;
        }
        
        .comparison-table td {
            padding: 15px 20px;
            text-align: center;
            font-size: 1rem;
            border-bottom: 1px solid #eee;
        }
        
        .comparison-table tr:nth-child(even) td {
            background: rgba(168, 232, 94, 0.05);
        }
        
        .comparison-table tr:hover td {
            background: rgba(102, 214, 192, 0.1);
            transition: background 0.3s ease;
        }
        
        .principles-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin: 40px 0;
        }
        
        .principle-card {
            background: white;
            padding: 30px;
            border-radius: 15px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.05);
            border-left: 5px solid #a8e85e;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        
        .principle-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(0,0,0,0.1);
        }
        
        .principle-card h4 {
            color: #66d6c0;
            font-size: 1.3rem;
            margin-bottom: 15px;
            font-weight: 600;
        }
        
        .cta-button {
            display: inline-block;
            background: linear-gradient(135deg, #a8e85e 0%, #66d6c0 100%);
            color: white;
            padding: 15px 30px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.1rem;
            margin: 10px;
            transition: all 0.3s ease;
            box-shadow: 0 5px 15px rgba(168, 232, 94, 0.3);
        }
        
        .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 25px rgba(168, 232, 94, 0.4);
            text-decoration: none;
            color: white;
        }
        
        .video-container {
            max-width: 800px;
            margin: 40px auto;
            position: relative;
            padding-bottom: 56.25%;
            height: 0;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }
        
        .video-container iframe {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            border: none;
        }
        
        .stats-section {
            background: linear-gradient(135deg, #2c5530 0%, #1a331c 100%);
            color: white;
            padding: 60px 0;
            text-align: center;
        }
        
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 40px;
            margin-top: 40px;
        }
        
        .stat-item {
            padding: 20px;
        }
        
        .stat-number {
            font-size: 3rem;
            font-weight: 800;
            color: #a8e85e;
            display: block;
        }
        
        .stat-label {
            font-size: 1.1rem;
            margin-top: 10px;
        }
        
        @media (max-width: 768px) {
            h1 { font-size: 2.5rem; }
            h2 { font-size: 2rem; }
            .hero-section { padding: 40px 0; }
            .content-section { padding: 40px 0; }
            .container { padding: 0 15px; }
        }
    </style>/* End custom CSS */