.modern-services-grid {
    display: grid;
    width: 100%;
}

.service-card {
    padding: 30px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    transition: all 0.3s ease;
    height: 100%;
}

.service-card.hover-lift:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.service-icon {
    font-size: 32px;
    margin-bottom: 20px;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(43, 147, 187, 0.1); /* Light accent color background */
    border-radius: 12px;
}

.service-title {
    margin: 0 0 15px 0;
    font-size: 20px;
    font-weight: 600;
}

.service-description {
    margin: 0;
    font-size: 15px;
    line-height: 1.6;
    flex-grow: 1;
}