/* Tree Counter - Animated Counter Styles */
.tree-counter-animated {
    text-align: center;
    padding: 20px;
}

.tree-counter-animated .counter-number {
    font-size: 72px;
    font-weight: bold;
    color: #9b59b6;
    line-height: 1;
    display: block;
    margin-bottom: 10px;
}

.tree-counter-animated .counter-label {
    color: #666;
    font-size: 16px;
}

/* Animation pour le compteur */
@keyframes countUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.tree-counter-animated.animated .counter-number {
    animation: countUp 0.6s ease-out;
}
