.visualizza-hero-section {
    width: 100%;
    padding: 80px 20px;
    overflow: hidden;
    min-height: 550px;
    position: relative;
    /*background-image: url('../images/yoja.jpg');*/
    background-size: cover;
    background-position: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

/* Image styling for service section */
.single-service img {
    width: 180px;
    height: 100px;
    object-fit: cover;
    border-radius: 90px / 50px;
    margin-bottom: 15px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Hover effect for images */
.single-service:hover img {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* Ensuring consistent layout for service items */
.single-service {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    margin: 10px;
    transition: all 0.3s ease;
    text-decoration: none;
    color: inherit;
    width: calc(25% - 20px);
    box-sizing: border-box;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .single-service {
        width: calc(50% - 20px);
    }
}

@media (max-width: 576px) {
    .single-service {
        width: 100%;
    }

    .single-service img {
        width: 150px;
        height: 85px;
    }
}