.services-type .service-card {
    background: #fff;
    border: 1px solid #eee;
    padding: 20px;
    height: 100%;
    border-radius: 10px;
    transition: 0.3s;
}

.services-type .service-card:hover {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.services-type .service-icon {
    font-size: 40px;
    color: #ff6600;
    margin-bottom: 15px;
}

.services-type .service-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
}

.services-type .service-desc {
    font-size: 14px;
    color: #555;
}

@media screen and (max-width:767px) {
    .services-type .service-card {
        margin-bottom: 10px;
    }
}