.elementor-944 .elementor-element.elementor-element-f576a06{--display:flex;}.elementor-widget-text-editor{font-family:var( --e-global-typography-text-font-family ), Sans-serif;font-weight:var( --e-global-typography-text-font-weight );color:var( --e-global-color-text );}.elementor-widget-text-editor.elementor-drop-cap-view-stacked .elementor-drop-cap{background-color:var( --e-global-color-primary );}.elementor-widget-text-editor.elementor-drop-cap-view-framed .elementor-drop-cap, .elementor-widget-text-editor.elementor-drop-cap-view-default .elementor-drop-cap{color:var( --e-global-color-primary );border-color:var( --e-global-color-primary );}:root{--page-title-display:none;}/* Start custom CSS */* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --primary: #2F6F4E;
            --accent: #7BC043;
            --text: #333333;
            --background: #F5F5F5;
            --footer: #1F1F1F;
            --white: #FFFFFF;
            --light-gray: #EFEFEF;
            --border: #E5E5E5;
        }

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
            color: var(--text);
            background: var(--white);
            line-height: 1.6;
        }

      

        /* Hero Section */
        .hero {
            /*margin-top: 0px;*/
            
            padding: 4rem 2rem;
            background: linear-gradient(135deg, #f5f5f5 0%, #EFEFEF 100%);
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -10%;
            width: 700px;
            height: 700px;
            background: radial-gradient(circle, rgba(123, 192, 67, 0.15) 0%, transparent 70%);
            border-radius: 50%;
            animation: float 8s ease-in-out infinite;
        }

        .hero::after {
            content: '';
            position: absolute;
            bottom: -20%;
            left: -5%;
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, rgba(47, 111, 78, 0.08) 0%, transparent 70%);
            border-radius: 50%;
            animation: float 10s ease-in-out infinite reverse;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0px); }
            50% { transform: translateY(40px); }
        }

        .hero-content {
            max-width: 800px;
            margin: 0 auto;
            position: relative;
            z-index: 2;
            text-align: center;
        }

        .hero h1 {
            font-size: 2.5rem;
            font-weight: 600;
            color: var(--primary);
            margin-bottom: 1rem;
            line-height: 1.2;
            letter-spacing: -1px;
        }

        .hero p {
            font-size: 1rem;
            color: #666;
            line-height: 1.8;
        }

        /* Main Content */
        .content-wrapper {
            max-width: 900px;
            margin: 0 auto;
            padding: 5rem 2rem;
        }

        .section-title {
            font-size: 1.8rem;
            color: var(--primary);
            margin: 3rem 0 1.5rem 0;
            line-height: 1.3;
        }

        .section-title:first-of-type {
            margin-top: 0;
        }

        .section-subtitle {
            font-size: 1.3rem;
            color: var(--primary);
            margin: 2rem 0 1rem 0;
            font-weight: 600;
        }

        .content-wrapper p {
            color: #666;
            font-size: 0.95rem;
            line-height: 1.8;
            margin-bottom: 1rem;
        }

        .content-wrapper ul,
        .content-wrapper ol {
            margin-left: 2rem;
            margin-bottom: 1rem;
            color: #666;
            font-size: 0.95rem;
            line-height: 1.8;
        }

        .content-wrapper li {
            margin-bottom: 0.8rem;
        }

        .highlight-box {
            background: rgba(123, 192, 67, 0.1);
            border-left: 4px solid var(--accent);
            padding: 1.5rem;
            margin: 2rem 0;
            border-radius: 4px;
        }

        .highlight-box p {
            margin: 0;
        }

        /* Footer */
        footer {
            background: var(--footer);
            color: var(--white);
            padding: 3rem 2rem;
            margin-top: 4rem;
        }

        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 2rem;
            padding-bottom: 2rem;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

        .footer-section h3 {
            font-size: 1rem;
            margin-bottom: 1.2rem;
            color: var(--accent);
        }

        .footer-section a {
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            font-size: 0.9rem;
            display: block;
            margin-bottom: 0.8rem;
            transition: color 0.3s ease;
        }

        .footer-section a:hover {
            color: var(--accent);
        }

        .footer-bottom {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding-top: 2rem;
            font-size: 0.9rem;
            color: rgba(255, 255, 255, 0.6);
        }

        .last-updated {
            color: #999;
            font-size: 0.9rem;
            font-style: italic;
            margin-top: 2rem;
            padding-top: 2rem;
            border-top: 1px solid var(--border);
        }

        /* Responsive */
        @media (max-width: 768px) {
            header {
                padding: 1rem 1.5rem;
            }

            nav {
                gap: 1rem;
            }

            .hero {
                padding: 2rem 1.5rem;
                margin-top: 70px;
            }

            .hero h1 {
                font-size: 1.8rem;
            }

            .content-wrapper {
                padding: 3rem 1.5rem;
            }

            .footer-content {
                grid-template-columns: repeat(2, 1fr);
            }

            .footer-bottom {
                flex-direction: column;
                gap: 1rem;
                text-align: center;
            }
        }

        @media (max-width: 480px) {
            header {
                flex-direction: column;
                gap: 1rem;
            }

            nav {
                flex-direction: column;
                gap: 0.5rem;
                width: 100%;
            }

            .hero h1 {
                font-size: 1.3rem;
            }

            .section-title {
                font-size: 1.3rem;
            }

            .content-wrapper {
                padding: 2rem 1rem;
            }
        }/* End custom CSS */