.elementor-3950 .elementor-element.elementor-element-79066c4{--display:flex;}/* Start custom CSS for wd_text_block, class: .elementor-element-10eba62 *//* 最外層容器：不設背景色，100% 靠左對齊，無圓角 */
.jf-card-layout-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 30px 20px;
    box-sizing: border-box;
    text-align: left;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    color: #333333;
}

/* 主標題樣式 */
.jf-card-layout-main-title {
    font-size: 28px;
    font-weight: 700;
    line-height: 1.4;
    color: #5A4275; /* 配色主視覺 */
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 3px solid #D0C1EC; /* 亮色系主色 */
}

/* 前言導讀樣式 */
.jf-card-layout-intro {
    font-size: 16px;
    line-height: 1.8;
    color: #4a4a4a;
    margin-bottom: 35px;
}

/* 內文連結樣式 */
.jf-card-layout-link {
    color: #5A4275;
    font-weight: 600;
    text-decoration: underline;
    transition: color 0.2s ease;
}
.jf-card-layout-link:hover {
    color: #D0C1EC;
}

/* 獨立卡片樣式：白/淺底、直角、靠左 */
.jf-card-layout-item {
    background: #ffffff;
    border-left: 6px solid #5A4275; /* 左側主題裝飾線 */
    border-top: 1px solid #e1e1e1;
    border-right: 1px solid #e1e1e1;
    border-bottom: 1px solid #e1e1e1;
    border-radius: 0px !important; /* 嚴格去除圓角 */
    padding: 25px 30px;
    margin-bottom: 25px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    box-sizing: border-box;
}

/* 卡片內標題 */
.jf-card-layout-card-title {
    font-size: 20px;
    font-weight: 700;
    color: #5A4275;
    margin-top: 0;
    margin-bottom: 15px;
}

/* 一般段落文字 */
.jf-card-layout-text {
    font-size: 15px;
    line-height: 1.7;
    color: #555555;
    margin-bottom: 15px;
}

/* 列表樣式 */
.jf-card-layout-list {
    list-style-type: none;
    padding-left: 0;
    margin: 0;
}
.jf-card-layout-list li {
    font-size: 15px;
    line-height: 1.7;
    color: #444444;
    margin-bottom: 12px;
    position: relative;
    padding-left: 15px;
}
.jf-card-layout-list li:last-child {
    margin-bottom: 0;
}
/* 列表小點改為主題色方塊 */
.jf-card-layout-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 9px;
    width: 6px;
    height: 6px;
    background-color: #D0C1EC;
    border-radius: 0px; /* 直角點 */
}

/* 結尾區塊 */
.jf-card-layout-footer {
    margin-top: 40px;
    padding: 0 10px;
}
.jf-card-layout-footer-title {
    font-size: 22px;
    font-weight: 700;
    color: #5A4275;
    margin-bottom: 15px;
}

/* CTA 區塊外盒：直角、大面積淺色底 */
.jf-card-layout-cta-box {
    background-color: #f9f7fc; /* 極淺的主題紫底色 */
    border: 1px solid #D0C1EC;
    border-radius: 0px !important; /* 直角 */
    padding: 30px;
    margin-top: 30px;
    box-sizing: border-box;
}
.jf-card-layout-cta-headline {
    font-size: 18px;
    font-weight: 700;
    color: #5A4275;
    margin-top: 0;
    margin-bottom: 12px;
}
.jf-card-layout-cta-text {
    font-size: 15px;
    line-height: 1.7;
    color: #666666;
    margin-bottom: 25px;
}

/* 按鈕群組與按鈕樣式 */
.jf-card-layout-btn-group {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}
.jf-card-layout-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 0px !important; /* 按鈕直角 */
    transition: all 0.2s ease-in-out;
    box-sizing: border-box;
    cursor: pointer;
}

/* 按鈕：主色調（官網） */
.jf-btn-primary {
    background-color: #5A4275;
    color: #ffffff !important;
    border: 1px solid #5A4275;
}
.jf-btn-primary:hover {
    background-color: #45305a;
    border-color: #45305a;
}

/* 按鈕：配襯色（登入） */
.jf-btn-secondary {
    background-color: #D0C1EC;
    color: #2a1b40 !important;
    border: 1px solid #D0C1EC;
}
.jf-btn-secondary:hover {
    background-color: #bfaee3;
    border-color: #bfaee3;
}

/* 按鈕：外框色（客服） */
.jf-btn-outline {
    background-color: transparent;
    color: #5A4275 !important;
    border: 2px solid #5A4275;
}
.jf-btn-outline:hover {
    background-color: #5A4275;
    color: #ffffff !important;
}

/* RWD 行動裝置優化：調整 padding 防止看起來過胖或過窄 */
@media screen and (max-width: 768px) {
    .jf-card-layout-container {
        padding: 20px 15px; /* 縮小外層邊距 */
    }
    .jf-card-layout-main-title {
        font-size: 22px;
    }
    .jf-card-layout-item {
        padding: 20px 15px; /* 讓手機版內部空間釋放，文字不擁擠 */
        margin-bottom: 20px;
    }
    .jf-card-layout-card-title {
        font-size: 18px;
    }
    .jf-card-layout-cta-box {
        padding: 20px 15px;
    }
    .jf-card-layout-btn-group {
        flex-direction: column; /* 手機版按鈕直向排列 */
        width: 100%;
    }
    .jf-card-layout-btn {
        width: 100%; /* 按鈕滿版，方便手指點擊 */
        text-align: center;
    }
}/* End custom CSS */