* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* 平滑滾動到目標區塊 */
html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Microsoft JhengHei', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* 更明顯的綠色背景版本 */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: #a8d5aa; /* 更鮮明的綠色背景 */
    border-radius: 10px;
}

::-webkit-scrollbar-thumb {
    background: #2c5530; /* 深綠色滾動條 */
    border-radius: 10px;
    border: 2px solid #a8d5aa;
}

::-webkit-scrollbar-thumb:hover {
    background: #1a3d1f;
}

::-webkit-scrollbar-thumb:active {
    background: #0f2912;
}

/* Firefox */
* {
    scrollbar-width: thin;
    scrollbar-color: #2c5530 #a8d5aa;
}

::-webkit-scrollbar-corner {
    background: #a8d5aa;
}