/* Override any existing button styles */
.service-card .service-link {
    background-color: var(--secondary-color);
    color: var(--text-white);
    border: none;
    padding: 12px 24px;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    margin-top: 1.5rem;
}

.service-card .service-link:hover {
    background-color: var(--primary-color);
    transform: translateY(-2px);
}

.service-icon i {
    color: var(--secondary-color) !important;
}
