.elementor-7389 .elementor-element.elementor-element-5e8b026e{--display:flex;--background-transition:0.3s;}.elementor-widget-text-editor{color:var( --e-global-color-text );font-family:var( --e-global-typography-text-font-family ), Sans-serif;font-size:var( --e-global-typography-text-font-size );font-weight:var( --e-global-typography-text-font-weight );line-height:var( --e-global-typography-text-line-height );}.elementor-widget-text-editor.elementor-drop-cap-view-stacked .elementor-drop-cap{background-color:var( --e-global-color-primary );}.elementor-widget-text-editor.elementor-drop-cap-view-framed .elementor-drop-cap, .elementor-widget-text-editor.elementor-drop-cap-view-default .elementor-drop-cap{color:var( --e-global-color-primary );border-color:var( --e-global-color-primary );}@media(max-width:1024px){.elementor-widget-text-editor{font-size:var( --e-global-typography-text-font-size );line-height:var( --e-global-typography-text-line-height );}}@media(max-width:767px){.elementor-widget-text-editor{font-size:var( --e-global-typography-text-font-size );line-height:var( --e-global-typography-text-line-height );}}/* Start custom CSS for text-editor, class: .elementor-element-83615f2 *//* 重置基礎樣式 */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans TC", sans-serif;
    background-color: #f8f9fa;
    color: #333333;
    line-height: 1.75;
    padding: 40px 20px;
}

/* 主容器 */
.container {
    max-width: 860px;
    margin: 0 auto;
    background: #ffffff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
}

/* 頂部灰底卡片 (對應圖片上方卡片結構) */
.intro-box {
    background-color: #f7f9f8;
    border: 1px solid #e2e8e5;
    border-radius: 10px;
    padding: 24px;
    margin-bottom: 35px;
}

.intro-box p {
    color: #4a5568;
    font-size: 15px;
    margin-bottom: 12px;
}

.intro-box p:last-child {
    margin-bottom: 0;
}

/* 標題樣式：帶有經典墨綠色左豎條 */
.section-title {
    font-size: 20px;
    font-weight: 700;
    color: #1f2937;
    margin: 35px 0 16px 0;
    padding-left: 12px;
    position: relative;
    display: flex;
    align-items: center;
}

.section-title::before {
    content: "";
    position: absolute;
    left: 0;
    top: 15%;
    height: 70%;
    width: 4px;
    background-color: #274d39; /* 圖片對應的質感墨綠色 */
    border-radius: 2px;
}

/* 普通段落 */
.paragraph {
    font-size: 15px;
    color: #4b5563;
    margin-bottom: 16px;
}

/* 表格容器與精緻圓角設計 */
.table-container {
    width: 100%;
    margin: 20px 0 25px 0;
    overflow-x: auto;
}

.styled-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #e5e7eb;
}

/* 表頭顏色：圖片中的墨綠色 (#274d39) */
.styled-table thead tr {
    background-color: #274d39;
    color: #ffffff;
    font-size: 15px;
}

.styled-table th {
    padding: 14px 18px;
    text-align: left;
    font-weight: 600;
    border-right: 1px solid rgba(255, 255, 255, 0.15);
}

.styled-table th:last-child {
    border-right: none;
}

/* 表格內容列 */
.styled-table td {
    padding: 14px 18px;
    font-size: 14px;
    color: #374151;
    border-bottom: 1px solid #eee;
    border-right: 1px solid #eee;
}

.styled-table td:last-child {
    border-right: none;
}

.styled-table tbody tr:last-child td {
    border-bottom: none;
}

/* 交替列背景顏色 */
.styled-table tbody tr:nth-of-type(even) {
    background-color: #f9fafb;
}

.styled-table tbody tr:nth-of-type(odd) {
    background-color: #ffffff;
}

/* 流程強調框 */
.highlight-flow {
    background-color: #edf4f0;
    color: #274d39;
    font-weight: bold;
    padding: 14px 20px;
    border-radius: 6px;
    margin: 15px 0 20px 0;
    font-size: 15px;
    text-align: center;
}

/* 手機版微調 */
@media (max-width: 640px) {
    .container {
        padding: 20px 15px;
    }
    .section-title {
        font-size: 18px;
    }
}/* End custom CSS */