.service-icon {
    color: var(--primary-color);
}

.service-card .card-title {
     color: var(--primary-color);
     font-weight: 600;
}

.service-title a:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

.service-description {
    margin-bottom: 15px;
    font-size: 16px;
}

.service-category-link {
    font-size: 16px;
    color: #333;
    transition: all 0.3s ease;
}

.service-category-link:hover {
    background-color: #f8f9fa;
    color: var(--primary-color);
    text-decoration: none;
}

.service-category-link.active {
    background-color: var(--primary-color);
    color: white;
}

.service-category-link.active .badge {
    background-color: white !important;
    color: var(--primary-color);
}

.service-card {
    border-bottom: 5px solid var(--primary-color) !important;
    height: 100%;
    min-height: 250px; /* ajuste selon ton design */
}

.service-card:hover {
    background-color: #F6F6F6;
}