/* General Card Styles */
.service-card {
    margin-bottom: 30px;
}

.card {
    border: 1px solid #ddd;
    border-radius: 5px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
}

/* Card Body Styles */
.card-body {
    padding: 15px;
}

.card h3 {
    margin-bottom: 10px;
    color: #007bff;
}

.card h4 {
    margin: 10px 0;
}

/* Image Styles */
.card-img-top {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .service-category {
        flex-direction: column;
    }
}