/* 全局樣式 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Microsoft JhengHei", Arial, sans-serif;
    line-height: 1.6;
    color: #333;
}

/* 頭部區域樣式 */
.hero {
    text-align: center;
    padding: 60px 20px;
    background-color: #f5f5f5;
}

.hero h1 {
    font-size: 2.5em;
    margin-bottom: 20px;
}

.subtitle {
    font-size: 1.2em;
    color: #666;
}

/* 服務卡片樣式 */
.services {
    padding: 40px 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.service-card {
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    padding: 20px;
    width: 300px;
    text-align: center;
}

.service-card img {
    width: 100%;
    height: auto;
    border-radius: 4px;
}

/* 數據統計樣式 */
.stats {
    background: #f9f9f9;
    padding: 40px 20px;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
    padding: 20px;
}

.number {
    display: block;
    font-size: 2em;
    font-weight: bold;
    color: #333;
}

.label {
    color: #666;
} 