/* Mobile Specific Enhancements for 2-column Services */
@media (max-width: 767px) {
    .service-card {
        padding: 1.25rem 1rem !important;
        /* Compact padding */
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
        min-height: 100%;
    }

    .service-icon {
        width: 50px !important;
        height: 50px !important;
        font-size: 1.5rem !important;
        margin-bottom: 1rem !important;
        border-radius: 1rem !important;
    }

    .service-card h4 {
        font-size: 1rem;
        margin-bottom: 0.5rem;
    }

    .service-desc {
        font-size: 0.8rem;
        line-height: 1.4;
        display: -webkit-box;
        -webkit-line-clamp: 3;
        line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }
}