/* 统计数据卡片容器 */
.stats-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    margin-bottom: 30px;
}

/* 统计数据卡片 */
.stat-card {
    background-color: var(--white-color);
    border-radius: 12px;
    box-shadow: var(--shadow);
    padding: 25px;
    min-width: 215px;
    text-align: center;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.stat-card h3 {
    margin-top: 0;
    color: var(--gray-color);
    font-size: 18px;
    font-weight: 600;
}

.stat-card p {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-color);
    margin: 15px 0 0;
}