.cp-chiffrescles {
    text-align: center;
    margin: 50px 0;
    font-family: Arial, sans-serif;
}
.cp-chiffrescles h2 {
    font-size: 32px;
    margin-bottom: 30px;
    color: #333;
}

.chiffres-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
}

.chiffre-item {
    background: #f8f9fa;       /* fond clair pour chaque chiffre */
    border: 2px solid #007bff;  /* contour bleu */
    border-radius: 12px;
    padding: 20px 30px;
    width: 160px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.chiffre-item:hover {
    transform: translateY(-5px);
}

.chiffre {
    font-size: 40px;
    font-weight: bold;
    color: #007bff;
}

.label {
    font-size: 16px;
    margin-top: 10px;
    color: #555;
}
