#services {
    margin: 2rem 0;
}

.service-item {
    margin-bottom: 2rem;
}

.service-card {
    background: #ffffff;
    border-radius: 8px;
    padding: 1.5rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, .08);
    border: 1px solid #e5e5e5;
    height: 100%;
}

.service-image {
    margin-bottom: 1rem;
}

.service-image img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
    border-radius: 6px;
}

.service-card .title {
    margin: 0 0 0.5rem;
    font-size: 1.5rem;
    font-weight: 600;
    padding-left: .75rem;
    border-left: 4px solid #B5121B;
}

.service-card .description {
    line-height: 1.6;
    margin-top: 0; 
}

.service-card .description p:first-child {
    margin-top: 0;
    margin-bottom: 0.5rem;
}

.service-link {
    margin-top: 1rem;
}

.service-link a {
    color: #B5121B;
    text-decoration: none;
    font-weight: 600;
}

.service-link a:hover {
    text-decoration: underline;
}

.service-item {
    display: flex;
    margin-bottom: 2rem;
}

.service-card {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
}

.service-card .title {
    margin: 0;
}

@media (max-width: 768px) {

    .service-image img {
        height: 180px;
    }

}

.service-card .description p {
    margin: 0 0 0.3rem 0;
}

.service-card .description br {
    display: block;
    margin-bottom: 0.3rem;
}