/* Services page */

.services-hero {
    padding: 4rem 0 2rem;
}

.service-card {
    background: var(--surface);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}

.service-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
}

.service-card-body {
    padding: 1.25rem;
}

.service-card-body h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.service-card-body p {
    color: var(--muted);
    margin-bottom: 0;
}

.benefit-box {
    padding: 1rem;
}

.benefit-box h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

@media (max-width: 767.98px) {
    .service-card img {
        height: 200px;
    }
}

@media (max-width: 575.98px) {
    .services-hero {
        padding: 2.5rem 0 1.5rem;
    }
}
