.statistics-section {
    margin-bottom: 2rem;
}

.stat-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.stat-card {
    background: var(--card-background);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    display: flex;
    align-items: center;
    gap: 1rem;
}

.stat-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(0, 122, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.stat-content h3 {
    font-size: 0.9rem;
    color: #6e6e73;
    margin-bottom: 0.5rem;
}

.stat-content p {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-color);
} 