/* 基礎重置與容器 */
* {
    box-sizing: border-box;
}

body, html {
    margin: 0;
    padding: 0;
    color: #333;
    font-size: 16px;
    line-height: 1.6;
}

.container {
    max-width: 1170px;
    margin: 0 auto;
    padding: 0 15px;
}

.container-fluid {
    width: 100%;
    padding: 0 15px;
}

.wsite-section-wrap {
    position: relative;
    width: 100%;
}

.wsite-section {
    padding: 40px 0;
    background-size: cover;
    background-position: center;
}

.wsite-spacer {
    width: 100%;
    clear: both;
}

/* 多欄位結構 */
.wsite-multicol {
    width: 100%;
}

.wsite-multicol-table {
    width: 100%;
    border-collapse: collapse;
}

.wsite-multicol-col {
    vertical-align: top;
}

/* 數據卡片（積沙成塔區塊） */
.stat-number {
    font-size: 2.25rem;
    font-weight: bold;
    color: #2a2a2a;
    line-height: 1.2;
}

.stat-title {
    font-size: 1.125rem;
    font-weight: bold;
    color: #fc7c00;
    margin-top: 5px;
}