.notice-modal {
            display: none;
            position: fixed;
            z-index: 9999;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.5);
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .notice-content {
            position: relative;
            background-color: #fff;
            margin: 5% auto;
            padding: 25px;
            width: 80%;
            max-width: 800px;
            max-height: 85vh;
            overflow-y: auto;
            border-radius: 8px;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            transform: translateY(-20px);
            transition: transform 0.3s ease;
            border-top: 5px solid #005941; /* 主要綠色 */
        }

        .notice-modal.show {
            display: block;
            opacity: 1;
        }

        .notice-modal.show .notice-content {
            transform: translateY(0);
        }

        .notice-content h2 {
            margin-bottom: 20px;
            color: #005941;
            font-size: 28px; /* 增大字號 */
            text-align: center; /* 居中對齊 */
            font-weight: bold; /* 加粗 */
            padding-bottom: 10px; /* 增加下方間距 */
        }

        .notice-content p {
            margin-bottom: 8px;
            line-height: 1.5;
            color: #333;
        }

        .notice-content em {
            color: #005941; /* 主要綠色用於郵箱地址 */
            font-style: normal;
            font-weight: 500;
        }

        .notice-btn {
            display: block;
            width: 200px;
            margin: 20px auto 0;
            padding: 12px 0;
            background-color: #005941; /* 主要綠色用於按鈕 */
            color: white;
            text-align: center;
            border: none;
            border-radius: 4px;
            cursor: pointer;
            transition: all 0.3s;
            font-weight: 500;
        }

        .notice-btn:hover {
            background-color: #004432; /* 深一點的綠色用於懸停 */
            box-shadow: 0 2px 5px rgba(0, 89, 65, 0.2);
        }

        .notice-divider {
            margin: 30px 0;
            border-top: 1px solid #e6eeec; /* 非常淺的綠色用於分隔線 */
        }

        /* 添加滾動條樣式 */
        .notice-content::-webkit-scrollbar {
            width: 8px;
        }

        .notice-content::-webkit-scrollbar-track {
            background: #e6eeec; /* 淺綠色背景 */
            border-radius: 4px;
        }

        .notice-content::-webkit-scrollbar-thumb {
            background: #005941; /* 主要綠色 */
            border-radius: 4px;
        }

        .notice-content::-webkit-scrollbar-thumb:hover {
            background: #004432; /* 深綠色 */
        }

        @media (max-width: 768px) {
            .notice-content {
                width: 90%;
                margin: 10% auto;
                padding: 20px;
            }

            .notice-content h2 {
                font-size: 24px; /* 手機版字號稍微小一點 */
            }

            .notice-btn {
                width: 100%;
            }
        }