.service_block {
    display: flex;
    flex-wrap: wrap;
}

.service_item {
    box-sizing: border-box;
    width: 100%;
    padding: 0;
    display: flex;
    align-items: flex-start;
    justify-content: center;
}

.service_item img {
    max-width: 100%;
    height: auto;
    margin-right: 20px; /* Adjust the margin as needed */
}

.service_item__content {
    flex: 1;
}

.service_item__title {
    font-weight: bold;
    font-size: 1.5em;
}

.service_item__text {
    margin-top: 0; /* Remove default margin for better spacing */
}

@media (max-width: 768px) {
    .service_item {
        width: 100%;
        margin: 20px 0;
    }
}