.vc_column-inner {
  border: 0px none  ;
}

.ma-colonne-epaisse .vc_column-inner {
  border: 1px solid #000 ;
}

.btn.btn-md.btn-primary.btn-classic {
    background-color: #759D7E;
    border: 1px solid #ffffff;
    border-radius: 10px;
    color: #ffffff;
    padding: 10px 20px;
    transition: all 0.25s ease;
}

/* Hover avec même couleur mais effet visuel */
.btn.btn-md.btn-primary.btn-classic:hover {
    background-color: #88b291; /* ton vert éclairci */
    border-color: #ffffff;
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    transform: translateY(-2px);
}




/* Carte stat uniquement si la colonne WPBakery contient la classe custom stats-card */
.stats-card .wpb_wrapper {
    background: #ffffff;
    border-radius: 10px;
    padding: 5px 3px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    text-align: center;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

/* Effet hover */
.stats-card .wpb_wrapper:hover {
    transform: translateY(-6px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.12);
}

/* Icône */
.stats-card .wpb_wrapper i {
    font-size: 25px;
    color: #004aad;
    margin-bottom: 5px;
}

/* Chiffre */
.stats-card .counterup {
    font-size: 25px ;
    font-weight: 600 ;
    color: #111;
    margin: 2px 0 2px;
}

/* Texte */
.stats-card .wpb_wrapper p {
    font-size: 13px;
    color: #666;
    margin: 0;
    line-height: 1.4;
}

/* Assurer l’alignement uniforme entre les colonnes */
.stats-card {
    display: flex;
}

.stats-card .wpb_wrapper {
    width: 100%;
}

/* Espacement mobile */
@media (max-width: 768px) {
    .stats-card {
        margin-bottom: 20px;
    }
}