.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.stat-card {
    text-align: center;
}

.stat-number {
    font-size: 32px;
    font-weight: bold;
    color: var(--accent-primary);
    margin-bottom: 5px;
}

.stat-label {
    font-size: 14px;
    color: var(--muted-text);
}
