.services-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    margin: 2rem 0;
}

.service-card {
    flex: 1 1 300px;
    max-width: 400px;
    padding: 2rem;
    background: var(--bg-color-accent-light);
    border-radius: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
    box-shadow: 0 5px 15px var(--shadow-color-light);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px var(--shadow-color-medium);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--primary-color-start);
}

.service-card h3 {
    color: var(--primary-color-start);
    margin-bottom: 1rem;
}