/* ============================================
   Services Page
   ============================================ */

.service-card {
    display: block;
    background: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-sm);
    text-decoration: none;
    color: inherit;
    height: 100%;
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    color: inherit;
}

.service-card-icon {
    width: 70px;
    height: 70px;
    margin-bottom: 1.25rem;
}

.service-card-icon img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.service-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.service-card p {
    font-size: 0.9375rem;
    color: var(--text-light);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.service-link {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--primary-color);
}

.service-card:hover .service-link {
    color: var(--primary-dark);
}

.service-benefit {
    padding: 1.5rem;
}

.service-benefit i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.service-benefit h5 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.service-benefit p {
    font-size: 0.9375rem;
    color: var(--text-light);
    margin: 0;
}
