.service-providers-list{
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 20px;
}
.service {
    display: flex;
    flex-direction: row;
    gap: 10px;
    justify-content: flex-start;
    width: 100%;
    background-color: whitesmoke;
}

.service .service-image {
    flex: .8;
    height: 250px;
}

.service .service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service .service-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex: 1.5;
    gap: 10px;
    padding: 10px;
}

.service .service-content a {
    text-decoration: none !important;
}

.service-content>a {
    color: #000;
}

.service .service-content address {
    margin: inherit;
}

.service .service-content svg {
    width: 16px;
    height: 16px;
}

.service .service-cta {
    flex: 0.5;
    text-align: center;
    display: flex;
    place-items: center;
    margin: 0px 20px;
    justify-content: center;
}

.service .service-cta a {
    display: flex;
    justify-content: center;
    /* align-content: center; */
    align-items: center;
    text-decoration: none !important;
    gap: 10px;

    background-color: blue;
    color: white;
    padding: 04px 16px;
    border-radius: 4px;
    font-size: 16px;
}

.service-providers-list .service {
    padding: 15px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    transition: transform 0.3s ease;
}

.service-providers-list .service:hover {
    transform: scale(1.02);
}

.service-providers-list .service.highlight {
    border: 3px solid red;
    border-radius: 10px;
}
