/* 统计模块样式 - 方案1：经典三栏设计 */
.statistics-section {
    max-width: 6xl; 
    margin: 0 auto; 
}

/* 标题区域 */
.statistics-header {
    text-align: center;
    margin-bottom: 20px;
}

.statistics-main-title {
    font-size: 48px;
    font-weight: 400;
    color: #1b5e20;
    margin-bottom: 20px;
    line-height: 1.1;
}

.statistics-subtitle {
    font-size: 18px;
    color: #2e7d32;
    opacity: 0.9;
    font-weight: 400;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

/* 统计数据网格 */
.statistics-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
    max-width: 800px;
    margin: 0 auto;
}

.statistics-item {
    text-align: center;
    transition: transform 0.3s ease;
}

.statistics-item:hover {
    transform: translateY(-5px);
}

.statistics-number {
    font-size: 56px;
    font-weight: 800;
    color: #2e7d32;
    margin-bottom: 12px;
    text-shadow: 0 2px 4px rgba(46, 125, 50, 0.1);
}

.statistics-label {
    font-size: 16px;
    color: #1b5e20;
    opacity: 0.8;
    font-weight: 500;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .statistics-section {
    }

    .statistics-main-title {
        font-size: 32px;
        font-weight: 400;
        margin-bottom: 16px;
        color: #1b5e20;
        line-height: 1.4;
    }

    .statistics-subtitle {
        font-size: 16px;
        font-weight: 400;
        margin-bottom: 40px;
        color: #2e7d32;
        line-height: 1.5;
    }

    .statistics-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        max-width: 100%;
    }

    .statistics-number {
        font-size: 40px;
        font-weight: 700;
        color: #2e7d32;
    }

    .statistics-label {
        font-size: 13px;
        font-weight: 400;
        color: #1b5e20;
    }
}
