/* --- 通用樣式 --- */
        body,
        html {
            margin: 0;
            padding: 0;
            width: 100%;
            height: 100%;
            font-family: Calibri, 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            color: #333;
            background-color: #f8f9fa;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
        }

        /* --- 主要容器 --- */
        .container {
            width: 90%;
            max-width: 750px;
            margin: 0 auto;
        }

        /* --- 訊息框 --- */
        .message-box {
            padding: 40px;
            background-color: #ffffff;
            border-radius: 8px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
        }

        .message-box h1 {
            font-size: 24px;
            font-weight: 600;
            color: #FF6B00;
            /* NF Orange */
            margin-bottom: 15px;
        }

        .message-box p {
            font-size: 16px;
            line-height: 1.6;
            margin: 0;
            color: #6D6E71;
        }
		
		.message-box p.justify {			
			text-align: justify;
		}
		
		.message-box .chinese {
			font-family:'Microsoft JhengHei', '微軟正黑體', 'Microsoft YaHei', sans-serif;
		}

        /* --- 分隔線 --- */
        .divider {
            border: 0;
            height: 1px;
            background: #e9ecef;
            margin: 25px 0;
        }

        /* --- 響應式設計：針對小螢幕（如手機）調整 --- */
        @media (max-width: 768px) {

            body,
            html {
                display: block;
                /* 取消置中，讓內容從頂部開始 */
                padding-top: 40px;
            }
        }