body {
    font-family: Arial, sans-serif;
}

.navbar .nav-link:hover,
.navbar .nav-link.active {
    color: #4FA236;
}

/* Hero Section */
a>img {
    width: 190px;
}

/* Benefit Section */
.benefit-card {
    background: #ffffff;
    transition: all 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.benefit-card .icon {
    width: 70px;
    height: 70px;
    margin: 0 auto;
    border-radius: 50%;
    background: #f0fdf4;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* How It Work Section */
#howitworks .work {
    transition: transform 0.3s ease;
}

#howitworks .work:hover {
    transform: translateY(-6px);
}

#howitworks i {
    transition: color 0.3s ease;
}

/* Service Section */
.service-box {
    background: #ffffff;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.service-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.service-box i {
    transition: transform 0.3s ease;
}

.service-box:hover i {
    transform: scale(1.1);
}

/* CTA Section */
.cta {
    background: linear-gradient(135deg, #0f766e, #16a34a);
}

.cta h2 {
    letter-spacing: 0.5px;
}

/* .cta .btn {
            padding: 12px 28px;
        } */

@media(max-width: 767px) {
    .copyright {
        flex-direction: column;

    }

    .small-text {
        font-size: 15px;
    }
}