
    .why-choose-section {
    padding: 2rem 0;
}
    .why-choose-section img{
    width: 100%;
}
.feature {
    margin-bottom: 30px;
}
.feature .icon {
    display: inline-block;
    position: relative;
    margin-bottom: 20px;
}
.feature h3 {
    font-size: 14px;
    color: #2f2f2f;
}
.feature p {
    font-size: 14px;
    line-height: 22px;
    color: #6a6a6a;
}
.feature .icon:before {
    content: "";
    width: 33px;
    height: 33px;
    position: absolute;
    background: rgba(59, 93, 80, 0.2);
    border-radius: 50%;
    right: -8px;
    bottom: 0;
}
.why-choose-section .img-wrap {
    position: relative;
}
.why-choose-section .img-wrap img {
    border-radius: 20px;
}
.custom-list {
    width: 100%;
}
.custom-list li {
    display: inline-block;
    width: calc(50% - 20px);
    margin-bottom: 12px;
    line-height: 1.5;
    position: relative;
    padding-left: 20px;
}
.custom-list li:before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: 2px solid #198754;
    position: absolute;
    left: 0;
    top: 8px;
}
 /* --- BRANDING VARIABLES & OVERRIDES --- */
        :root {
            --el-lime: #74d31d;
            --el-green: #19821b;
            --el-black: #000000;
            --el-white: #ffffff;
        }
/* Hero Section with Custom Clip Path */
        .hero-section {
            background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.6)), url('https://images.unsplash.com/photo-1542744173-8e7e53415bb0?ixlib=rb-1.2.1&auto=format&fit=crop&w=1950&q=80');
            background-size: cover;
            background-position: center;
            min-height: 60vh;
            clip-path: polygon(0 0, 100% 0, 100% 90%, 0 100%); /* Slanted edge */
            position: relative;
        }

        /* Custom Button Styling to match #74d31d */
        .btn-elactree {
            background-color: var(--el-lime);
            color: var(--el-black);
            border: none;
            font-weight: 600;
            padding: 10px 30px;
            border-radius: 50px;
            transition: all 0.3s ease;
        }

        .btn-elactree:hover {
            background-color: var(--el-green);
            color: var(--el-white);
            transform: translateY(-2px);
        }

        /* Stats Section Background */
        .bg-elactree-dark {
            background-color: var(--el-green);
        }

        /* Feature Card Hover Effects */
        .feature-card {
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            border-bottom: 3px solid transparent;
        }

        .feature-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.1);
            border-bottom: 3px solid var(--el-lime);
        }

        .icon-circle {
            width: 70px;
            height: 70px;
            background-color: rgba(116, 211, 29, 0.1);
            color: var(--el-green);
            font-size: 1.5rem;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            margin: 0 auto 1rem auto;
        }

        /* Decoration for About Image */
        .img-decoration {
            position: relative;
        }
        .img-decoration::before {
            content: '';
            position: absolute;
            top: -15px;
            left: -15px;
            width: 80px;
            height: 80px;
            border-top: 5px solid var(--el-lime);
            border-left: 5px solid var(--el-lime);
            z-index: 0;
        }
        .img-decoration img {
            position: relative;
            z-index: 1;
        }
                .text-lime { color: var(--el-lime); }

