/* Styles pour le logo et les statistiques en ligne */

.hero-stats {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.stats-logo {
    text-align: center;
    margin-bottom: 1rem;
    width: 100%;
}

.stats-logo img {
    max-width: 90%;
    width: 90%;
    height: auto;
    display: block;
    margin: 0 auto;
}

.stats-grid.stats-single-row {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: stretch;
    gap: 2rem;
    flex-wrap: wrap;
    width: 100%;
}

.stats-single-row .stat-item {
    flex: 1;
    min-width: 200px;
    max-width: 300px;
}

/* Responsive pour mobile */
@media (max-width: 768px) {
    .stats-logo img {
        max-width: 85%;
        width: 85%;
    }
    
    .stats-grid.stats-single-row {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .stats-single-row .stat-item {
        max-width: 100%;
    }
}
