 
    /* FLOAT IMAGE */
.service-image {
    width: 500px;          /* control image width */
    float: left;
    margin-right: 30px;
    margin-bottom: 20px;
}

/* Image styling */
.service-image img {
    width: 100%;
    height: 460px;
    object-fit: cover;
    border-radius: 18px;
}

/* Clear float */
.service-details-content::after {
    content: "";
    display: block;
    clear: both;
}

/* Responsive */
@media (max-width: 991px) {
    .service-image {
        float: none;
        width: 100%;
        margin-right: 0;
    }

    .service-image img {
        height: auto;
    }
}

 