.numbers-section {
    /* On utilise ta variable pour l'image */
    background: var(--footer-bg-image) no-repeat center center;
    background-size: cover;
    background-attachment: fixed;
    position: relative;
    padding: 80px 0;
    color: #fff;
}

/* L'overlay utilise ta variable --footer-overlay */
.numbers-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--footer-overlay);
    z-index: 1;
}

/* Les cartes utilisent ton bleu foncé pour le survol */
.number-card {
    background: rgba(0, 0, 0, 0.4); /* Légère transparence */
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 40px 20px;
    border-radius: 15px;
    position: relative;
    z-index: 2;
    transition: 0.4s;
}

.number-card:hover {
    transform: translateY(-10px);
    background: var(--zilom-dark); /* Utilise ta variable dark */
    border-color: var(--zilom-blue); /* Utilise ta variable blue */
}

/* L'icône et le bouton utilisent tes couleurs spécifiques */
.n-icon i {
    color: var(--zilom-blue);
    font-size: 45px;
    margin-bottom: 15px;
    display: block;
}

.btn-donation {
    background-color: var(--zilom-donation);
    border-color: var(--zilom-donation);
    color: white;
    font-weight: 700;
    transition: 0.3s;
}

.btn-donation:hover {
    background-color: #e04a4f; /* Version un peu plus sombre du rouge */
    color: white;
    transform: scale(1.05);
}