    :root {
        --bank-gold: #b5838d;
        --bank-red: #c2242d;
        --bank-dark: #2c3e50;
        --bg-light: #f8f9fa;
        --card-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
        --transition-smooth: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    }

    body {
        background-color: var(--bg-light) !important;
        font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft JhengHei", sans-serif !important;
        color: #333;
    }

    /* 破除舊版窄版固定寬度，全面改用標準彈性容器 */
    .Ch6Main1 {
        max-width: 100% !important;
        width: 100% !important;
        border: none !important;
        box-shadow: none !important;
        background: transparent !important;
        margin: 0 !important;
        overflow: visible !important;
    }
    .Ch6Main2 {
        display: block !important;
        width: 100% !important;
        margin: 0 !important;
    }
    
    /* 隱藏舊式側邊欄選單（全面升級為現代化大會計導覽與資訊卡片架構） */
    .main-sidebar { display: none !important; }
    .main-content { width: 100% !important; }
	/* ========================================================
	   動感活潑輪播圖設計 (Lively Carousel)
	   ======================================================== */
	#slider1_container {
		border-radius: 20px;
		overflow: hidden;
		box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08); /* 柔和陰影 */
		transform: translateZ(0); /* 硬體加速，讓動畫更滑順 */
	}

	/* 1. 圖片呼吸感動畫 (緩慢微縮放，增加生命力) */
	#carouselSlides .carousel-item img {
		transition: transform 6s ease-out; /* 動畫時間與輪播停留時間相近最佳 */
		transform: scale(1.05); /* 預設稍微放大 */
	}
	#carouselSlides .carousel-item.active img {
		transform: scale(1); /* 啟動時慢慢縮回原比例 */
	}

	/* 2. 現代化動態指示器 (Pill-shape indicators) */
	#carouselSlides .carousel-indicators {
		bottom: 20px;
		gap: 8px;
		margin: 0;
	}
	#carouselSlides .carousel-indicators li {
		width: 10px;
		height: 10px;
		border-radius: 50%;
		background-color: rgba(255, 255, 255, 0.6);
		border: none;
		transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
		margin: 0;
		cursor: pointer;
	}
	#carouselSlides .carousel-indicators .active {
		width: 32px; /* 啟動時向兩側拉長變成膠囊狀 */
		background-color: #ffffff;
		box-shadow: 0 2px 8px rgba(0,0,0,0.3);
	}

	/* 3. 玻璃擬態 (Glassmorphism) 左右切換按鈕 */
	#carouselSlides .carousel-control-prev,
	#carouselSlides .carousel-control-next {
		width: 50px;
		height: 50px;
		background: rgba(255, 255, 255, 0.25);
		backdrop-filter: blur(8px); /* 磨砂玻璃效果 */
		-webkit-backdrop-filter: blur(8px);
		border-radius: 50%;
		top: 50%;
		transform: translateY(-50%);
		opacity: 0; /* 預設隱藏，畫面更乾淨 */
		transition: all 0.4s ease;
		box-shadow: 0 4px 15px rgba(0,0,0,0.1);
		color: #fff;
	}
	/* 滑鼠移入輪播圖時，按鈕優雅浮現 */
	#carouselSlides:hover .carousel-control-prev,
	#carouselSlides:hover .carousel-control-next {
		opacity: 1; 
	}
	#carouselSlides .carousel-control-prev { left: 20px; }
	#carouselSlides .carousel-control-next { right: 20px; }

	/* 按鈕 Hover 的微放大與變色效果 */
	#carouselSlides .carousel-control-prev:hover,
	#carouselSlides .carousel-control-next:hover {
		background: rgba(255, 255, 255, 0.95);
		color: #c2242d;
		transform: translateY(-50%) scale(1.15); /* 移入時微放大，帶動感 */
	}

	/* 4. 暫停/播放按鈕活潑化 */
	.carousel-pause-btn {
		background: rgba(255, 255, 255, 0.25) !important;
		backdrop-filter: blur(8px);
		border: none !important;
		color: #fff !important;
		border-radius: 50% !important;
		width: 44px;
		height: 44px;
		display: flex;
		align-items: center;
		justify-content: center;
		bottom: 15px !important;
		right: 25px !important;
		transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important; /* 帶有彈性的動畫曲線 */
		box-shadow: 0 4px 10px rgba(0,0,0,0.1);
		z-index: 15;
	}
	.carousel-pause-btn:hover {
		background: rgba(255, 255, 255, 0.95) !important;
		color: #c2242d !important;
		transform: scale(1.15) rotate(8deg); /* 加入一點俏皮的微旋轉 */
	}

	/* ========================================================
	   1. 經典黃金比例 Hero 視覺區（左輪播 8欄 + 右旗艦核心功能 4欄）
	   ======================================================== */
	.hero-section {
		margin-top: 20px;
		margin-bottom: 25px;
	}

	/* 完美適配 1920x1080 (16:9) 圖片比例 */
	#slider1_container {
		width: 100% !important;
		max-width: 100% !important;
		height: auto !important;         /* 取消原本的 380px 固定高度 */
		aspect-ratio: 16 / 9 !important; /* 強制使用 16:9 黃金比例，完美呈現 1920x1080 */
		max-height: 550px;               /* 設定上限，避免在超大螢幕上變得無限高而造成壓迫感 */
		border-radius: 16px;
		overflow: hidden;
		box-shadow: var(--card-shadow);
	}
	#carouselSlides, .carousel-inner, .carousel-item { height: 100% !important; }
	#carouselSlides img {
		width: 100%;
		height: 100%;
		object-fit: cover; 
	}

	/* ========================================================
	   右側旗艦核心快捷卡片 (尊榮質感升級版)
	   ======================================================== */
	.hero-cta-sidebar {
		height: 100%;
		min-height: 400px; /* 原 450px，調低 */
		display: flex;
		flex-direction: column;
		gap: 12px; /* 原 18px，收緊 */
	}

	/* ========================================================
	   💎 頂級紅寶石與流光質感：個人網路銀行主卡片
	   ======================================================== */
	.cta-card-main {
		position: relative;
		/* 更飽和、更有層次的紅寶石漸層 */
		background: linear-gradient(135deg, #e63946 0%, #90030c 100%);
		border-radius: 24px;
		padding: 30px;
		display: flex;
		flex-direction: column;
		text-decoration: none !important;
		overflow: hidden;
		/* 增加立體感：外側深色陰影 + 內側頂部白色反光 */
		box-shadow: 0 15px 35px rgba(144, 3, 12, 0.4), inset 0 2px 0 rgba(255, 255, 255, 0.2);
		border: 1px solid rgba(255, 255, 255, 0.1);
		transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
		z-index: 1;
	}

	/* 懸浮時的浮動發光效果 */
	.cta-card-main:hover {
		transform: translateY(-8px);
		box-shadow: 0 20px 45px rgba(230, 57, 70, 0.5), inset 0 2px 0 rgba(255, 255, 255, 0.4);
	}

	/* 背景動態流光特效 (緩慢旋轉的光暈) */
	.cta-card-main::before {
		content: '';
		position: absolute;
		top: -50%;
		left: -50%;
		width: 200%;
		height: 200%;
		background: radial-gradient(circle, rgba(255,255,255,0.12) 0%, transparent 60%);
		transform: rotate(45deg);
		animation: premiumShine 8s infinite linear;
		pointer-events: none;
		z-index: -1;
	}
	@keyframes premiumShine {
		0% { transform: rotate(0deg) translate(-5%, -5%); }
		50% { transform: rotate(180deg) translate(5%, 5%); }
		100% { transform: rotate(360deg) translate(-5%, -5%); }
	}

	/* ========================================================
	   🧊 蘋果風毛玻璃圖示框
	   ======================================================== */
	.cta-icon-wrapper {
		width: 64px;
		height: 64px;
		background: rgba(255, 255, 255, 0.15);
		/* 磨砂玻璃濾鏡 */
		backdrop-filter: blur(12px);
		-webkit-backdrop-filter: blur(12px);
		border-radius: 20px;
		display: flex;
		align-items: center;
		justify-content: center;
		margin-bottom: auto;
		box-shadow: 0 8px 25px rgba(0,0,0,0.2), inset 0 1px 0 rgba(255, 255, 255, 0.4);
		border: 1px solid rgba(255, 255, 255, 0.2);
		transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
	}
	/* 滑鼠移入時圖示會俏皮放大並微傾斜 */
	.cta-card-main:hover .cta-icon-wrapper {
		transform: scale(1.15) rotate(5deg);
		background: rgba(255, 255, 255, 0.25);
	}
	.cta-icon-wrapper svg {
		width: 32px;
		height: 32px;
		fill: #ffffff;
		filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
	}

	/* ========================================================
	   ✍️ 漸層文字與精緻排版
	   ======================================================== */
	.cta-text {
		margin-top: 25px;
		z-index: 2;
	}
	.cta-title {
		font-size: 2.2rem; /* 🌟 從 1.8rem 放大至 2.2rem (約 35px)，更具視覺張力 */
		font-weight: 900;
		letter-spacing: 2px;
		margin-bottom: 12px; /* 微調間距以適應大字體 */
		/* 標題套用珍珠白到淡金的漸層色 */
		background: linear-gradient(to right, #ffffff 0%, #ffe4e1 100%);
		-webkit-background-clip: text;
		-webkit-text-fill-color: transparent;
		filter: drop-shadow(0 2px 4px rgba(0,0,0,0.2));
	}
	.cta-desc {
		color: rgba(255, 255, 255, 0.95);
		font-size: 1.25rem; /* 🌟 從 1rem 放大至 1.25rem (約 20px)，閱讀更清晰舒服 */
		line-height: 1.7;   /* 🌟 增加行高，讓大字不會顯得擁擠 */
		font-weight: 600;   /* 🌟 稍微加粗，確保字體放大後依然紮實有力 */
		text-shadow: 0 1px 3px rgba(0,0,0,0.3);
	}

	/* ========================================================
	   👉 鎏金導航箭頭按鈕
	   ======================================================== */
	.cta-arrow {
		position: absolute;
		right: 25px;
		bottom: 25px;
		width: 48px;
		height: 48px;
		/* 預設為半透明，帶來內斂感 */
		background: rgba(255, 255, 255, 0.15);
		backdrop-filter: blur(5px);
		border-radius: 50%;
		display: flex;
		justify-content: center;
		align-items: center;
		color: #ffffff;
		border: 1px solid rgba(255, 255, 255, 0.3);
		transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
		z-index: 2;
	}
	/* 滑鼠移入時，瞬間爆發出尊爵的白金質感，並向右彈跳 */
	.cta-card-main:hover .cta-arrow {
		transform: translateX(10px) scale(1.1);
		background: #ffffff;
		color: #e63946; /* 箭頭變為紅寶石色 */
		box-shadow: 0 8px 20px rgba(255, 255, 255, 0.5);
		border-color: #ffffff;
	}
	.cta-arrow svg {
		stroke-width: 2.5;
		transition: transform 0.3s ease;
	}
	.cta-card-main:hover .cta-arrow {
		background: #ffffff;
		color: #c2242d;
		transform: translateX(5px);
		box-shadow: 0 4px 15px rgba(0,0,0,0.15);
	}

	/* --- 次卡雙網格：招募人才 & 房屋拍賣 --- */
	.cta-card-sub-wrapper {
		flex: 1;
		display: flex;
		gap: 18px;
	}
	.cta-card-sub {
		flex: 1;
		/* 移除原本的 background: #ffffff; 改由下方個別設定 */
		border-radius: 18px;
		padding: 20px 10px;
		box-shadow: 0 4px 15px rgba(0,0,0,0.04);
		display: flex;
		flex-direction: column;
		align-items: center;
		justify-content: center;
		transition: all 0.3s ease;
		border: 1px solid #f1f3f5;
		text-decoration: none !important;
		color: #2c3e50;
		gap: 12px;
		position: relative;
		overflow: hidden;
	}

	/* 底部紅線動態展開特效 */
	.cta-card-sub::after {
		content: '';
		position: absolute;
		bottom: 0;
		left: 0;
		width: 100%;
		height: 4px;
		background: #c2242d;
		transform: scaleX(0);
		transition: transform 0.3s ease;
		transform-origin: center;
	}

	.cta-card-sub:hover {
		transform: translateY(-4px);
		box-shadow: 0 10px 25px rgba(0,0,0,0.08);
		border-color: rgba(194, 36, 45, 0.1);
		color: #c2242d;
	}
	.cta-card-sub:hover::after {
		transform: scaleX(1);
	}

	.cta-card-sub .sub-icon {
		width: 50px;
		height: 50px;
		background: #f8f9fa;
		border-radius: 14px;
		display: flex;
		align-items: center;
		justify-content: center;
		transition: all 0.3s ease;
	}
	.cta-card-sub:hover .sub-icon {
		background: #fff0f1;
		transform: scale(1.1); /* 圖示微放大 */
	}

	.cta-card-sub .sub-icon svg {
		width: 24px;
		height: 24px;
		fill: #2c3e50;
		transition: fill 0.3s ease;
	}
	.cta-card-sub:hover .sub-icon svg {
		fill: #c2242d;
	}
	.cta-card-sub .sub-title {
		font-weight: 700;
		font-size: 1.05rem;
		letter-spacing: 0.5px;
	}
	/* 給予第一張卡片（人才招募）微藍色調的專業感 */
	.cta-card-sub:nth-child(1) {
		background: linear-gradient(135deg, #ffffff 0%, #f0f4f8 100%);
		border: 1px solid #d9e2ec;
		color: #102a43;
	}
	.cta-card-sub:nth-child(1) .sub-icon { background: #e0eaf5; }
	.cta-card-sub:nth-child(1) .sub-icon svg { fill: #243b53; }

	/* 給予第二張卡片（房地拍賣）微暖金色調的財富感 */
	.cta-card-sub:nth-child(2) {
		background: linear-gradient(135deg, #ffffff 0%, #fff7eb 100%);
		border: 1px solid #fce5c8;
		color: #7b4500;
	}
	.cta-card-sub:nth-child(2) .sub-icon { background: #faeacb; }
	.cta-card-sub:nth-child(2) .sub-icon svg { fill: #d97706; }

	/* 統一 Hover 時的動態反饋 */
	.cta-card-sub:hover {
		transform: translateY(-4px);
		box-shadow: 0 10px 25px rgba(0,0,0,0.08);
	}
	.cta-card-sub:nth-child(1):hover { border-color: #9fb3c8; }
	.cta-card-sub:nth-child(2):hover { border-color: #f6c085; }

	/* ========================================================
	   2. 懸浮破框佈告欄 (回復原樣，確保全面靠左)
	   ======================================================== */
	.news-bulletin-board {
		position: relative;
		background: #ffffff;
		border-radius: 20px;
		box-shadow: 0 10px 40px rgba(194, 36, 45, 0.08); /* 帶有微紅的柔和陰影 */
		margin-top: 55px !important; /* 留出空間給上方懸浮的標籤 */
		margin-bottom: 50px !important; /* 留出空間給下方懸浮的按鈕 */
		padding: 40px 30px; /* 大幅增加內部留白，打造畫框感 */
		border: 1px solid #ffeff0;
        /* 🌟 關鍵修正 1：移除原本的 flex 置中，改為 block 讓內容自然滿版靠左 */
		display: block; 
	}

	/* 🎀 破框設計 1：凸出左上角的立體標籤 (靠左且保持完整膠囊形狀) */
	.bulletin-ribbon {
		position: absolute;
		top: -22px; 
		left: 16px; /* 🌟 關鍵修改：稍微向內退一點點，避免貼死邊緣產生壓迫感 */
		background: linear-gradient(135deg, #c2242d 0%, #ff4b55 100%);
		color: #ffffff;
		font-weight: 800;
		font-size: 1.05rem;
		padding: 10px 24px;
		
        /* 🌟 關鍵修改：恢復四邊都有圓角，這樣視覺上才會是一個「完整」的標籤，不會像被切斷 */
		border-radius: 16px; 
        
		box-shadow: 0 8px 20px rgba(194, 36, 45, 0.3);
		display: flex;
		align-items: center;
		letter-spacing: 1px;
		z-index: 10;
	}

	/* 🎀 修正：將控制按鈕收斂至右下角，取消破框 */
	.bulletin-action {
		position: absolute;
		bottom: 12px;
		right: 20px;
		left: auto;
		transform: none;
		z-index: 10;
	}

	/* 修正：低調幽靈按鈕風格 */
	.btn-bulletin-pause {
		background: rgba(255, 255, 255, 0.9);
		color: #888888; /* 柔和灰 */
		border: 1px solid #e2e8f0;
		font-weight: 600;
		font-size: 0.85rem;
		padding: 6px 16px;
		border-radius: 20px;
		box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
		transition: all 0.3s ease;
		cursor: pointer;
		outline: none;
	}

	.btn-bulletin-pause:hover {
		background: #ffffff;
		color: #c2242d;
		border-color: #ffc9c9;
		transform: translateY(-2px);
		box-shadow: 0 4px 12px rgba(194, 36, 45, 0.12);
	}

	/* 修正：覆寫 toggleButton 的預設高光 */
	#toggleButton {
		background: rgba(255, 255, 255, 0.9);
		color: #888888;
		border-color: #e2e8f0 !important;
	}
	#toggleButton:hover {
		color: #c2242d;
		border-color: #ffc9c9 !important;
	}

	/* 🏃‍♂️ 跑馬燈外框與煙霧遮罩 */
	#my_Marquee_box {
		width: 100%;
		height: 150px !important; 
		border: none !important;
		background: transparent !important;
		padding: 0 !important;
		overflow: hidden;
		/* 上下邊緣淡出煙霧感 */
		-webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 15%, black 85%, transparent 100%);
		mask-image: linear-gradient(to bottom, transparent 0%, black 15%, black 85%, transparent 100%);
	}

	/* --- 單行公告：高易讀性靠左排版 --- */
	.my_Marquee { 
		padding: 15px 20px;
		margin-bottom: 8px; 
		border-radius: 16px;
		transition: all 0.3s ease;
	}

	.my_Marquee:hover {
		background: #fffafb;
		transform: scale(1.02); 
	}

	.my_Marquee a { 
		color: #2d3748 !important; 
		font-size: 1.05rem !important; 
		line-height: 1.6 !important;
		font-weight: 600 !important; 
		text-decoration: none; 
		
		display: flex; 
		flex-direction: row;     /* 標籤與文字左右並排 */
		align-items: flex-start; /* 讓標籤對齊文字的第一行 */
		text-align: left;        /* 文字強制靠左 */
		gap: 14px;               /* 標籤與文字之間拉出舒服的間距 */
	}

	.my_Marquee a:hover { 
		color: #c2242d !important; 
	}

	/* 標籤防擠壓設定 */
	.my_Marquee .badge {
		font-size: 0.9rem; 
		padding: 6px 16px; 
		font-weight: 800;
		box-shadow: 0 4px 10px rgba(0,0,0,0.08); 
		
		flex-shrink: 0; 
		margin-bottom: 0 !important; /* 覆寫掉原本 HTML 裡的 mb-2 */
		margin-top: 3px; /* 稍微往下推一點點，讓標籤與右邊文字的視覺重心完美水平對齊 */
	}

	/* 暫停/播放按鈕美化 */
	#toggleButton {
		font-weight: 700;
		letter-spacing: 0.5px;
		transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
		background: #fff5f5;
		color: #c2242d;
		border-color: #ffc9c9 !important;
	}
	#toggleButton:hover {
		background: #c2242d;
		color: #ffffff;
		transform: translateY(-2px);
		box-shadow: 0 4px 10px rgba(194, 36, 45, 0.2);
	}

	/* ========================================================
	   跑馬燈手機版專屬設定：修正為靠左對齊
	   ======================================================== */
	@media (max-width: 991px) {
		.my_Marquee a {
            /* 🌟 關鍵修正 2：手機版將文字與標籤強制靠左對齊，消除置中感 */
			flex-direction: column; 
			align-items: flex-start;    
			text-align: left;     
			gap: 8px; 
		}
		
		.my_Marquee .badge {
			margin-top: 0; 
			margin-bottom: 4px !important; 
		}
	}
	/* ========================================================
	   3. 數位金流快捷服務網格 (現代化 App 風格)
	   ======================================================== */
	.services-grid {
		display: grid;
		grid-template-columns: repeat(6, 1fr);
		gap: 12px; /* 原 20px，收緊圖示之間的距離 */
		margin-bottom: 25px; /* 原 35px，拉近與下方區塊的距離 */
	}
	/* 響應式：平板 3 欄，手機 2 欄 */
	@media (max-width: 991px) { .services-grid { grid-template-columns: repeat(3, 1fr); } }
	@media (max-width: 575px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }

	.service-item-card {
		background: #ffffff;
		border-radius: 20px; /* 更圓潤的現代 App 導角 */
		padding: 15px 10px; /* 原 25px 10px，大幅減少上下留白 */
		text-align: center;
		box-shadow: 0 4px 15px rgba(0,0,0,0.03); /* 極輕微的常態陰影 */
		border: 1px solid rgba(0,0,0,0.03); /* 極淡的邊框 */
		transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1); /* 平滑彈性動畫曲線 */
		display: flex;
		flex-direction: column;
		align-items: center;
		justify-content: center;
		text-decoration: none !important;
		position: relative;
		overflow: hidden;
	}

	/* 隱藏的漸層背景，Hover 時優雅浮現 */
	.service-item-card::before {
		content: '';
		position: absolute;
		top: 0; left: 0; width: 100%; height: 100%;
		background: linear-gradient(135deg, #fffaf0 0%, #ffffff 100%);
		opacity: 0;
		transition: opacity 0.4s ease;
		z-index: 0;
	}

	/* 滑鼠移入時的立體浮動與微光陰影 */
	.service-item-card:hover {
		transform: translateY(-8px); /* 明顯的上浮 */
		box-shadow: 0 15px 30px rgba(194, 36, 45, 0.12); /* 帶有品牌紅色的高階陰影 */
		border-color: rgba(194, 36, 45, 0.15); /* 邊框微透紅 */
	}
	.service-item-card:hover::before {
		opacity: 1; /* 暖色背景微光浮現 */
	}

	/* 圖示的彈性互動 */
	.service-item-card img {
		height: 48px; /* 稍微放大圖示 */
		width: auto;
		margin-bottom: 16px;
		object-fit: contain;
		transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275); /* 果凍般的彈性縮放 */
		position: relative;
		z-index: 1; /* 確保在背景之上 */
	}
	.service-item-card:hover img { 
		transform: scale(1.15) translateY(-3px); /* 放大並微微上浮 */
	}

	/* 文字樣式升級 */
	.service-item-card span {
		color: #2c3e50;
		font-weight: 700;
		font-size: 1rem;
		letter-spacing: 0.5px;
		position: relative;
		z-index: 1;
		transition: color 0.3s ease;
	}
	.service-item-card:hover span {
		color: #c2242d; /* Hover 時字體變為六信品牌紅 */
	}
	/* ========================================================
	   快捷服務網格 - 雙色調 SVG 圖示專屬樣式 (質感升級版)
	   ======================================================== */
	.service-icon-wrapper {
		width: 64px;
		height: 64px;
		background: #f8f9fa; /* 淡灰色底座 */
		border-radius: 50%;
		display: flex;
		align-items: center;
		justify-content: center;
		margin-bottom: 16px;
		transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
		position: relative;
		z-index: 1;
	}

	.service-item-card:hover .service-icon-wrapper {
		background: #fff0f1; /* Hover 時底座變成極淡的紅色 */
		transform: scale(1.15) translateY(-3px);
	}

	/* --- SVG 雙色調核心設定 --- */
	.service-icon-wrapper svg {
		width: 34px; /* 稍微放大一點點增加份量感 */
		height: 34px;
		transition: all 0.3s ease;
	}

	/* 1. 主線條 (預設深藍灰) */
	.service-icon-wrapper svg .icon-main {
		fill: none;
		stroke: #2c3e50;
		stroke-width: 1.5; /* 改為 1.5 讓線條更俐落精緻 */
		stroke-linecap: round;
		stroke-linejoin: round;
		transition: stroke 0.3s ease;
	}

	/* 2. 點綴線條 (六信紅) */
	.service-icon-wrapper svg .icon-accent-stroke {
		fill: none;
		stroke: #c2242d;
		stroke-width: 1.5;
		stroke-linecap: round;
		stroke-linejoin: round;
	}

	/* 3. 裝飾性錯位底塊 (淡粉紅) */
	.service-icon-wrapper svg .icon-accent-fill {
		fill: #ffe3e4; 
		stroke: none;
		transition: fill 0.3s ease;
	}

	/* --- Hover 時的動態色彩變化 --- */
	.service-item-card:hover .service-icon-wrapper svg .icon-main {
		stroke: #c2242d; /* 移入時主線條跟著變紅 */
	}
	.service-item-card:hover .service-icon-wrapper svg .icon-accent-fill {
		fill: #ffd1d3; /* 移入時裝飾底塊顏色微加深 */
	}

    /* ========================================================
       4. 三維立體資訊面板區塊
       ======================================================== */
    .info-panel-layout {
        display: grid;
        grid-template-columns: 4fr 4fr 4fr;
        gap: 18px; /* 原 25px，收緊三個大區塊的距離 */
        margin-bottom: 25px;
    }
    @media (max-width: 991px) { .info-panel-layout { grid-template-columns: 1fr; } }

    .bank-glass-card {
        background: #fff;
        border-radius: 16px;
        box-shadow: var(--card-shadow);
        padding: 18px; /* 原 25px，減少卡片內留白 */
        border: 1px solid rgba(0,0,0,0.02);
    }
    .panel-header-title {
        font-size: 1.15rem;
        font-weight: 700;
        color: var(--bank-dark);
        margin-bottom: 20px;
        padding-bottom: 12px;
        border-bottom: 2px solid #f1f3f5;
        display: flex;
        align-items: center;
        gap: 10px;
    }
    .panel-header-title img { height: 20px; width: auto; }
    
    /* 簡約俐落條目樣式 */
    .clean-bullet-list { padding: 0; list-style: none; margin: 0; }
    .clean-bullet-list li {
        margin-bottom: 14px;
        padding-left: 18px;
        position: relative;
    }
    .clean-bullet-list li::before {
        content: "";
        width: 6px;
        height: 6px;
        background-color: var(--bank-red);
        border-radius: 50%;
        position: absolute;
        left: 0;
        top: 9px;
    }
    .clean-bullet-list a {
        color: #495057;
        font-size: 0.95rem;
        font-weight: 500;
        transition: var(--transition-smooth);
        text-decoration: none;
    }
    .clean-bullet-list a:hover { color: var(--bank-red); padding-left: 3px; }

    /* 下方整合多媒體與合作標章網格 */
    .integrated-media-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }
    .media-grid-item {
        background: #f8f9fa;
        border-radius: 10px;
        overflow: hidden;
        border: 1px solid #e9ecef;
        display: flex;
        justify-content: center;
        align-items: center;
        height: 68px;
        transition: var(--transition-smooth);
    }
    .media-grid-item:hover {
        transform: scale(1.03);
        border-color: rgba(194, 36, 45, 0.2);
        box-shadow: 0 4px 12px rgba(0,0,0,0.04);
    }
    .media-grid-item img { max-width: 90%; max-height: 85%; object-fit: contain; }

	/* ========================================================
	   5. 頁尾高階經理級聯絡與檢舉面板 (一體化整合面板)
	   ======================================================== */
	.premium-contact-panel {
		background: transparent !important; 
		padding: 0 !important;
	}

	/* 🌟 將三個區塊包起來的巨大外框 */
	.unified-contact-container {
		background: #ffffff;
		border-radius: 20px;
		box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05); /* 共用一個大陰影 */
		border: 1px solid #edf2f7;
		overflow: hidden; /* 確保內部邊線與底色不會突出圓角 */
	}

	/* 內部每個小區塊的設定 */
	.contact-action-inner {
		padding: 32px 28px;
		height: 100%; 
		display: flex;
		flex-direction: column;
		position: relative;
		transition: background-color 0.4s ease;
	}

	/* 取消原本整張卡片浮動，改為滑鼠移入時該區塊「微亮底色」，維持一體感 */
	.contact-action-inner.card-lost:hover { background-color: #fffafb; }
	.contact-action-inner.card-complain:hover { background-color: #f7fcff; }
	.contact-action-inner.card-report:hover { background-color: #fcfaff; }

	/* 小標籤 Badge 設定 */
	.card-badge {
		position: absolute;
		top: 0;
		right: 0;
		font-size: 0.7rem;
		font-weight: 900;
		padding: 6px 14px;
		border-radius: 0 0 0 14px;
		letter-spacing: 1px;
	}

	/* 卡片標題區與 SVG 圖示 */
	.card-card-title {
		font-size: 1.1rem;
		font-weight: 800;
		color: #2d3748;
		margin-bottom: 20px;
		display: flex;
		align-items: center;
		gap: 10px;
	}
	.card-card-title svg {
		width: 22px;
		height: 22px;
	}

	/* 大字電話號碼樣式 */
	.card-phone-number {
		font-size: 2rem;
		font-weight: 900;
		font-family: -apple-system, BlinkMacSystemFont, "Arial Black", sans-serif;
		letter-spacing: -0.5px;
		line-height: 1;
		margin-bottom: 6px;
	}
	.card-phone-note {
		font-size: 0.85rem;
		color: #718096;
		font-weight: 600;
	}

	/* 條目式排版列（用於申訴與檢舉） */
	.card-info-row {
		display: flex;
		justify-content: space-between;
		align-items: center;
		padding: 10px 0;
		border-bottom: 1px dashed #edf2f7;
	}
	.card-info-row:last-of-type { border-bottom: none; }

	.info-lbl { font-size: 0.85rem; color: #718096; font-weight: 700; }
	.info-val { font-size: 0.95rem; color: #4a5568; }
	.card-phone-number-sm { font-size: 1.2rem; font-weight: 800; }
	.text-purple { color: #6b46c1 !important; }

	/* 檢舉專屬地址收件匣 */
	.card-address-box {
		background: #f8fafc;
		border-radius: 12px;
		padding: 12px 16px;
		border: 1px solid #e2e8f0;
	}
	.address-hd { font-size: 0.8rem; font-weight: 800; color: #64748b; margin-bottom: 4px; }
	.address-bd { font-size: 0.85rem; color: #475569; line-height: 1.5; }

	/* 內嵌信箱圖片區塊優化 */
	.card-footer-email {
		margin-top: auto; 
		padding-top: 20px;
	}
	.email-lbl { font-size: 0.85rem; color: #718096; font-weight: 700; display: block; margin-bottom: 6px; }
	.email-img-box img { height: 18px; width: auto; display: block; }

	/* ========================================================
	   🎨 核心亮點色彩方案：套用至頂部色條與內部元件
	   ======================================================== */
	.card-lost { border-top: 4px solid #f56565; }
	.card-lost .card-badge { background: #fff5f5; color: #e53e3e; }
	.card-lost .card-card-title svg { stroke: #e53e3e; }

	.card-complain { border-top: 4px solid #4299e1; }
	.card-complain .card-badge { background: #ebf8ff; color: #2b6cb0; }
	.card-complain .card-card-title svg { stroke: #2b6cb0; }

	.card-report { border-top: 4px solid #9f7aea; }
	.card-report .card-badge { background: #faf5ff; color: #6b46c1; }
	.card-report .card-card-title svg { stroke: #6b46c1; }

	/* ========================================================
	   📱 內部框線設計 (完美處理電腦與手機版的分隔線)
	   ======================================================== */
	/* 預設(手機版)：上下排列，使用底部橫向分隔線 */
	.contact-col {
		border-bottom: 1px solid #edf2f7;
	}
	.contact-col:last-child {
		border-bottom: none;
	}

	/* 電腦版(大螢幕)：左右排列，改用左右垂直分隔線 */
	@media (min-width: 992px) {
		.contact-col {
			border-bottom: none;
		}
		.contact-col.border-lg-start { border-left: 1px solid #edf2f7; }
		.contact-col.border-lg-end { border-right: 1px solid #edf2f7; }
	}
	/* ========================================================
	   6. 深度探索導覽選單 (高彩度活力色彩升級版)
	   ======================================================== */
	dl.sb {
		margin: 0;
		padding: 0;
		border: none !important;
		border-radius: 20px; /* 更圓潤、更有科技App現代感 */
		overflow: hidden;
		background: #ffffff;
		box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05); /* 常態柔和陰影 */
		transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
	}

	/* 整個方框滑鼠移入時的繽紛微光特效 */
	dl.sb:hover {
		box-shadow: 0 20px 40px rgba(194, 36, 45, 0.12);
	}

	/* --- 通用主標題 (dt) 基礎設定 --- */
	dl.sb dt {
		border: none !important;
		padding: 16px 24px !important;
		margin: 0 0 4px 0 !important; /* 讓每個大項目之間有一點點小縫隙，看起來更輕盈 */
		border-radius: 12px;
		position: relative;
		cursor: pointer;
		background: #f8f9fa !important; /* 預設清爽淺灰底 */
		transition: all 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275);
	}
	dl.sb dt:last-of-type { margin-bottom: 0 !important; }

	/* --- 通用主標題文字 (a連結) 基礎設定 --- */
	dl.sb dt a {
		color: #2c3e50 !important; /* 加上這行：強制將預設顏色改為深鐵灰色，不再是傳統藍色 */
		font-weight: 800 !important;
		font-size: 1.05rem !important;
		display: block;
		text-decoration: none;
		transition: color 0.3s ease;
	}

	/* 右側動態箭頭 */
	dl.sb dt::after {
		content: "➔"; 
		position: absolute;
		right: 24px;
		top: 50%;
		transform: translateY(-50%);
		font-size: 0.9rem;
		color: #a0aec0;
		transition: all 0.35s ease;
	}

	/* ========================================================
	   🎨 核心亮點：為每個大項目注入專屬的「活潑生命色」
	   ======================================================== */

	/* 【項目 1：關於六信】 - 展現專業與信任的尊爵藍 */
	dl.sb dt:nth-of-type(1):hover { background: linear-gradient(135deg, #ebf4ff 0%, #d2e6ff 100%) !important; padding-left: 32px !important; }
	dl.sb dt:nth-of-type(1):hover a { color: #2b6cb0 !important; }
	dl.sb dt:nth-of-type(1):hover::after { color: #2b6cb0; transform: translateY(-50%) translateX(6px); }

	/* 【項目 2：服務據點】 - 展現親切與在地的晴空翠綠藍 */
	dl.sb dt:nth-of-type(2):hover { background: linear-gradient(135deg, #e6fffa 0%, #b2f5ea 100%) !important; padding-left: 32px !important; }
	dl.sb dt:nth-of-type(2):hover a { color: #319795 !important; }
	dl.sb dt:nth-of-type(2):hover::after { color: #319795; transform: translateY(-50%) translateX(6px); }

	/* 【項目 3：公益活動】 - 溫暖人心、活力熱情的珊瑚溫馨橘 */
	dl.sb dt:nth-of-type(3):hover { background: linear-gradient(135deg, #fff5f5 0%, #fed7d7 100%) !important; padding-left: 32px !important; }
	dl.sb dt:nth-of-type(3):hover a { color: #e53e3e !important; }
	dl.sb dt:nth-of-type(3):hover::after { color: #e53e3e; transform: translateY(-50%) translateX(6px); }

	/* 【項目 4：AED急救訓練】 - 熱心公益、安心守護的嫩芽萌綠 */
	dl.sb dt:nth-of-type(4):hover { background: linear-gradient(135deg, #f0fff4 0%, #c6f6d5 100%) !important; padding-left: 32px !important; }
	dl.sb dt:nth-of-type(4):hover a { color: #38a169 !important; }
	dl.sb dt:nth-of-type(4):hover::after { color: #38a169; transform: translateY(-50%) translateX(6px); }

	/* 【項目 5：線上開戶專區】 - 全場最焦點！璀璨黃金發光漸層 */
	dl.sb dt:last-child {
		background: linear-gradient(135deg, #fffbeb 0%, #fef3c7 100%) !important;
		border: 1px solid #fde68a !important;
	}
	dl.sb dt:last-child a.sidebar-special-link {
		color: #b45309 !important; /* 質感琥珀金 */
	}
	dl.sb dt:last-child:hover {
		background: linear-gradient(135deg, #ffedd5 0%, #f97316 100%) !important; /* 移入時爆發出亮麗能量橘 */
		transform: scale(1.03);
		z-index: 5;
		box-shadow: 0 10px 25px rgba(249, 115, 22, 0.3);
	}
	dl.sb dt:last-child:hover a.sidebar-special-link {
		color: #ffffff !important; /* 變白色字確保高對比閱讀 */
	}
	dl.sb dt:last-child::after { color: #b45309; }
	dl.sb dt:last-child:hover::after { color: #ffffff; }


	/* --- 子選單展開內容區 (dd) 彩色優化 --- */
	dl.sb dd {
		background: #fafbfc !important;
		margin: 0 0 6px 0 !important;
		padding: 16px 20px !important;
		border-radius: 12px;
	}

	/* 網格排列據點（14個據點雙欄） */
	dl.sb dd ul {
		display: grid;
		grid-template-columns: 1fr 1fr; 
		gap: 10px 14px;
		padding: 0;
		margin: 0;
		list-style: none;
	}

	/* 子項目超連結微互動 */
	dl.sb dd ul li a {
		color: #4a5568 !important;
		font-size: 0.95rem !important;
		font-weight: 600;
		text-decoration: none;
		display: block;
		padding: 6px 12px 6px 24px;
		position: relative;
		border-radius: 8px;
		transition: all 0.25s ease;
	}

	/* 預設的靜態彩色小圓點 */
	dl.sb dd ul li a::before {
		content: '';
		position: absolute;
		left: 10px;
		top: 50%;
		transform: translateY(-50%);
		width: 6px;
		height: 6px;
		background-color: #cbd5e0; /* 預設淡灰 */
		border-radius: 50%;
		transition: all 0.25s cubic-bezier(0.175, 0.885, 0.32, 1.275);
	}

	/* 滑鼠移入子項目：換上繽紛微糖果底色 */
	dl.sb dd ul li a:hover {
		color: #c2242d !important; /* 字體變六信紅 */
		background: #fff5f5; /* 輕盈粉紅底 */
		padding-left: 28px;
	}

	/* 移入時，小圓點會像泡泡一樣放大並變成閃亮的六信紅 */
	dl.sb dd ul li a:hover::before {
		background-color: #c2242d;
		width: 8px;
		height: 8px;
		box-shadow: 0 0 8px rgba(194, 36, 45, 0.6);
	}
	/* ========================================================
	   跑馬燈下方的宣導影片區塊 (左側主欄)
	   ======================================================== */
	.video-section {
		width: 100%;
		margin-bottom: 0;
	}

	.video-grid {
		display: grid;
		grid-template-columns: 1fr 1fr; /* 讓兩支影片完美左右並排 */
		gap: 15px; /* 影片之間的間距 */
	}

	/* 確保 YouTube iframe 永遠保持 16:9 黃金比例，不留黑邊 */
	.video-iframe-wrapper {
		position: relative;
		width: 100%;
		aspect-ratio: 16 / 9;
		border-radius: 12px;
		overflow: hidden;
		box-shadow: 0 4px 12px rgba(0,0,0,0.08); /* 增加立體感 */
		background: #000;
	}

	.video-iframe-wrapper iframe {
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		border: none;
	}

	/* 響應式：手機版寬度不夠時，自動變成上下排列 */
	@media (max-width: 767px) {
		.video-grid {
			grid-template-columns: 1fr; 
		}
	}

	/* ========================================================
	   8. 創新版：中央存保鉑金保障卡 (Platinum Security Card)
	   ======================================================== */
	.innovative-cdic-card {
		position: relative;
		background: linear-gradient(135deg, #fdfbf7 0%, #ede4d3 100%); /* 鉑金/香檳金漸層底色 */
		border: 1px solid rgba(255, 255, 255, 0.8);
		border-radius: 16px;
		padding: 20px 25px;
		display: flex;
		align-items: center;
		justify-content: space-between;
		box-shadow: 0 8px 25px rgba(212, 175, 55, 0.15), 
					inset 0 0 10px rgba(255, 255, 255, 0.5); /* 內外發光創造實體卡片感 */
		overflow: hidden;
		transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
		margin-bottom: 0;
	}

	.innovative-cdic-card:hover {
		transform: translateY(-3px) scale(1.01);
		box-shadow: 0 12px 30px rgba(212, 175, 55, 0.25), 
					inset 0 0 15px rgba(255, 255, 255, 0.8);
	}

	/* 核心創新：防偽雷射掃光動畫 (Holographic Sweep Effect) */
	.innovative-cdic-card::before {
		content: '';
		position: absolute;
		top: 0; 
		left: -150%;
		width: 50%; 
		height: 100%;
		background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,0.7) 50%, rgba(255,255,255,0) 100%);
		transform: skewX(-25deg);
		animation: shineSweep 6s infinite; /* 每 6 秒掃過一次光澤 */
		pointer-events: none;
	}

	@keyframes shineSweep {
		0% { left: -150%; }
		15% { left: 200%; } /* 光線快速掃過 */
		100% { left: 200%; } /* 停留等待下一次循環 */
	}

	/* 內容排版 */
	.cdic-info-group {
		display: flex;
		flex-direction: column;
		gap: 8px;
		z-index: 1; /* 確保文字在光澤之上 */
	}

	.cdic-official-title {
		color: #252467; /* 呼應存保標誌的深藍色 */
		font-weight: 800;
		font-size: 1.15rem;
		letter-spacing: 1px;
		display: flex;
		align-items: center;
		gap: 8px;
	}

	.cdic-official-title span {
		background: #252467;
		color: #fff;
		font-size: 0.75rem;
		padding: 2px 6px;
		border-radius: 4px;
		letter-spacing: 0;
		font-weight: normal;
	}

	.cdic-guarantee-text {
		color: #555;
		font-size: 0.95rem;
		margin: 0;
		font-weight: 600;
	}

	.cdic-amount-highlight {
		color: #c2242d;
		font-size: 1.6rem;
		font-weight: 900;
		font-family: -apple-system, BlinkMacSystemFont, "Arial Black", sans-serif;
		letter-spacing: 1px;
		margin: 0 4px;
		text-shadow: 0 2px 4px rgba(194, 36, 45, 0.2);
	}

	/* 純 CSS/SVG 刻出的標誌容器 */
	.cdic-vector-logo {
		display: flex;
		flex-direction: column;
		align-items: center;
		z-index: 1;
	}

	.cdic-vector-logo svg {
		width: 55px;
		height: 55px;
		filter: drop-shadow(0 4px 6px rgba(0,0,0,0.1));
	}

	.cdic-vector-logo .cdic-en {
		font-size: 0.65rem;
		color: #252467;
		font-weight: 700;
		margin-top: 5px;
		letter-spacing: 0.5px;
	}
	/* ========================================================
	   9. 服務績優人員展示卡 (Honor Staff Showcase)
	   ======================================================== */
	.honor-staff-showcase {
		background: linear-gradient(180deg, #fffafb 0%, #ffffff 100%);
		border: 1px solid #ffeff0;
		border-radius: 16px;
		padding: 25px 20px;
		display: flex;
		flex-direction: column;
		align-items: center;
		justify-content: center;
		position: relative;
		box-shadow: 0 4px 15px rgba(194, 36, 45, 0.03);
		transition: var(--transition-smooth);
		text-decoration: none !important;
		margin-bottom: 20px; /* 推開下方的存保卡，增加呼吸空間 */
	}

	.honor-staff-showcase:hover {
		transform: translateY(-4px);
		box-shadow: 0 10px 25px rgba(194, 36, 45, 0.08);
		border-color: rgba(194, 36, 45, 0.15);
	}

	/* 照片專屬立體相框 */
	.staff-photo-frame {
		position: relative;
		display: inline-block;
		padding: 6px;
		background: #ffffff;
		border-radius: 16px;
		box-shadow: 0 4px 15px rgba(0,0,0,0.06);
		border: 1px solid #f1f3f5;
	}

	.staff-photo-frame img.staff-img {
		width: 130px;
		height: auto;
		border-radius: 10px; /* 照片微圓角 */
		display: block;
	}

	/* 完美定位的獎盃圖示 */
	.staff-photo-frame img.trophy-icon {
		position: absolute;
		width: 52px;
		bottom: -15px;
		right: -15px; /* 絕對貼齊相框右下角，不管螢幕多大都不會跑位 */
		filter: drop-shadow(0 4px 6px rgba(0,0,0,0.15));
		transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
	}

	.honor-staff-showcase:hover .trophy-icon {
		transform: scale(1.15) rotate(8deg); /* 滑鼠移入時獎盃會俏皮放大 */
	}

	.staff-honor-text {
		margin-top: 22px;
		color: var(--bank-dark);
		font-weight: 700;
		font-size: 1.05rem;
		letter-spacing: 0.5px;
	}

	.staff-honor-text span {
		color: var(--bank-red); /* 凸顯「服務績優人員」字樣 */
	}
	
	/* ========================================================
	   10. 創新版：多元服務與合作夥伴 (Bento Box Widget Style)
	   ======================================================== */
	.bento-media-grid {
		display: grid;
		grid-template-columns: repeat(2, 1fr);
		gap: 12px;
		margin-bottom: 1.5rem;
	}

	/* Bento 模組卡片基礎設定 */
	.bento-item {
		background: #ffffff;
		border-radius: 16px;
		padding: 16px 14px;
		display: flex;
		flex-direction: column;
		align-items: flex-start;
		justify-content: space-between;
		border: 1px solid #f1f3f5;
		box-shadow: 0 4px 12px rgba(0,0,0,0.02);
		transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
		text-decoration: none !important;
		position: relative;
		overflow: hidden;
		z-index: 1;
	}

	/* 創新亮點：卡片右下角的隱藏環境光暈 */
	.bento-item::after {
		content: '';
		position: absolute;
		bottom: -30px;
		right: -30px;
		width: 90px;
		height: 90px;
		background: radial-gradient(circle, rgba(194, 36, 45, 0.08) 0%, rgba(255, 255, 255, 0) 70%);
		border-radius: 50%;
		transition: transform 0.5s ease;
		z-index: -1;
	}

	.bento-item:hover {
		transform: translateY(-3px);
		box-shadow: 0 8px 20px rgba(194, 36, 45, 0.08);
		border-color: rgba(194, 36, 45, 0.15);
	}

	.bento-item:hover::after {
		transform: scale(1.8); /* 移入時光暈擴散 */
	}

	/* SVG 圖示外框與特效 */
	.bento-icon-wrapper {
		width: 38px;
		height: 38px;
		border-radius: 10px;
		background: #f8f9fa;
		display: flex;
		align-items: center;
		justify-content: center;
		margin-bottom: 12px;
		transition: all 0.3s ease;
	}

	.bento-item:hover .bento-icon-wrapper {
		background: #fff0f1;
	}

	.bento-icon-wrapper svg {
		width: 20px;
		height: 20px;
		stroke: #495057;
		fill: none;
		stroke-width: 2;
		stroke-linecap: round;
		stroke-linejoin: round;
		transition: stroke 0.3s ease;
	}

	.bento-item:hover .bento-icon-wrapper svg {
		stroke: #c2242d;
	}

	/* 文字標籤設計 */
	.bento-text {
		font-size: 0.9rem;
		font-weight: 700;
		color: #2c3e50;
		line-height: 1.3;
		transition: color 0.3s ease;
	}

	.bento-item:hover .bento-text {
		color: #c2242d;
	}

	/* 第五個選項（一卡通特約下載）採用橫跨兩欄的寬版微件 */
	.bento-item.full-width {
		grid-column: span 2;
		flex-direction: row;
		align-items: center;
		padding: 14px 20px;
	}

	.bento-item.full-width .bento-icon-wrapper {
		margin-bottom: 0;
		margin-right: 15px;
	}	
	/* ========================================================
	   11. 創新版：公開事項與下載專區 (修復文字遮擋問題)
	   ======================================================== */
	.innovative-list-container {
		display: flex;
		flex-direction: column;
		gap: 12px;
	}

	/* --- 互動式導覽條 (法定公開事項) --- */
	.interactive-list-item {
		display: flex;
		justify-content: space-between;
		align-items: center;
		padding: 14px 20px;
		background: #ffffff;
		border-radius: 12px;
		color: #4a5568;
		font-weight: 700;
		font-size: 0.95rem;
		text-decoration: none !important;
		border: 1px solid #edf2f7;
		
		/* 🌟 核心解法：利用「內部陰影 (inset)」繪製左邊的 5px 色帶，它會乖乖待在文字底下 */
		box-shadow: inset 5px 0 0 0 #cbd5e0, 0 2px 8px rgba(0,0,0,0.02);
		transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
	}

	/* 滑鼠移入：整條按鈕微彈性上浮並向右推 */
	.interactive-list-item:hover {
		transform: translateY(-2px) translateX(4px);
		border-color: transparent;
	}

	/* 🌈 移入動畫：將內部陰影寬度瞬間拉大到 800px，完美達到「填滿背景」的效果且不蓋字！ */

	/* 1. 定型化契約 (信任藍) */
	.interactive-list-item:nth-child(1):hover { box-shadow: inset 800px 0 0 0 #ebf8ff, 0 8px 20px rgba(0,0,0,0.06); color: #3182ce; }

	/* 2. 法定公開揭露 (尊爵紫) */
	.interactive-list-item:nth-child(2):hover { box-shadow: inset 800px 0 0 0 #f3f0ff, 0 8px 20px rgba(0,0,0,0.06); color: #6b46c1; }

	/* 3. 線上服務 (科技青) */
	.interactive-list-item:nth-child(3):hover { box-shadow: inset 800px 0 0 0 #e6fffa, 0 8px 20px rgba(0,0,0,0.06); color: #319795; }

	/* 4. 政令宣傳 (環保綠) */
	.interactive-list-item:nth-child(4):hover { box-shadow: inset 800px 0 0 0 #f0fff4, 0 8px 20px rgba(0,0,0,0.06); color: #38a169; }

	/* 5. 防詐騙專區 (警示亮橘) */
	.interactive-list-item:nth-child(5):hover { box-shadow: inset 800px 0 0 0 #fffaf0, 0 8px 20px rgba(0,0,0,0.06); color: #dd6b20; }

	/* 6. 金融友善 (保留原先強調的六信紅，並讓它預設就有粉紅底與紅線) */
	.interactive-list-item.highlight-red { 
		color: #c2242d; 
		background: #fff5f5; 
		border-color: #ffe3e3;
		box-shadow: inset 5px 0 0 0 #fc8181, 0 2px 8px rgba(0,0,0,0.02);
	}
	.interactive-list-item.highlight-red:hover { 
		box-shadow: inset 800px 0 0 0 #fed7d7, 0 8px 20px rgba(0,0,0,0.06);
	}

	/* 7. 表單下載 (活力洋紅) */
	.interactive-list-item:nth-child(7):hover { box-shadow: inset 800px 0 0 0 #fff5f7, 0 8px 20px rgba(0,0,0,0.06); color: #d53f8c; }

	/* 箭頭動態：會自動跟隨父元素的顏色變色 */
	.interactive-list-item .arrow-icon {
		width: 20px; 
		height: 20px;
		stroke: #a0aec0;
		transition: all 0.3s ease;
	}
	.interactive-list-item:hover .arrow-icon {
		transform: translateX(6px);
		stroke: currentColor; 
	}


	/* ========================================================
	   --- 實體下載卡片 (手冊下載：PDF質感升級版) --- 
	   ======================================================== */
	.download-card-item {
		display: flex;
		align-items: center;
		gap: 16px;
		padding: 16px 20px;
		background: #ffffff;
		border: 1px solid #f1f3f5;
		border-radius: 16px; 
		text-decoration: none !important;
		transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
		box-shadow: 0 4px 12px rgba(0,0,0,0.02);
		position: relative;
		overflow: hidden;
	}

	/* 右下角隱藏的微光暈 */
	.download-card-item::after {
		content: '';
		position: absolute;
		right: -30px; 
		bottom: -30px;
		width: 100px; 
		height: 100px;
		background: radial-gradient(circle, rgba(194, 36, 45, 0.06) 0%, transparent 70%);
		border-radius: 50%;
		transition: transform 0.5s ease;
	}

	.download-card-item:hover {
		border-color: rgba(194, 36, 45, 0.2);
		box-shadow: 0 12px 30px rgba(194, 36, 45, 0.08);
		transform: translateY(-4px); 
	}

	.download-card-item:hover::after {
		transform: scale(2.5); 
	}

	/* 下載圖示的專屬底座 */
	.download-icon-box {
		width: 48px; 
		height: 48px;
		background: #fff0f1; 
		border-radius: 14px;
		display: flex; 
		justify-content: center; 
		align-items: center;
		transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
		position: relative; /* 確保圖示不受光暈干擾 */
		z-index: 1;
	}

	.download-card-item:hover .download-icon-box {
		background: linear-gradient(135deg, #c2242d 0%, #ff4b55 100%); 
		transform: scale(1.1) rotate(-8deg); 
		box-shadow: 0 6px 15px rgba(194, 36, 45, 0.3);
	}

	.download-icon-box svg {
		width: 24px; 
		height: 24px;
		stroke: #c2242d; 
		transition: stroke 0.3s ease;
	}

	.download-card-item:hover .download-icon-box svg {
		stroke: #ffffff; 
	}

	.download-text {
		color: #2d3748;
		font-size: 1rem;
		font-weight: 800;
		transition: color 0.3s ease;
		position: relative; /* 確保文字不受光暈干擾 */
		z-index: 1;
	}

	.download-card-item:hover .download-text {
		color: #c2242d;
	}
	
	/* ========================================================
	   宣導專區滑鼠滑入預覽快報樣式
	   ======================================================== */

	/* 關鍵修正：破除 overflow: hidden 限制，讓懸浮窗能順利顯示 */
	#promoServiceCard {
		overflow: visible !important;
	}

	/* 懸浮預覽視窗基底 */
	.promo-popover {
		position: absolute;
		bottom: 115%; /* 浮現於按鈕正上方 */
		left: 50%;
		transform: translateX(-50%) translateY(10px); /* 預設微微偏下，營造上升動畫感 */
		width: 280px;
		background: #ffffff;
		border: 1px solid #f1f3f5;
		border-radius: 14px;
		box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
		padding: 15px;
		opacity: 0;
		visibility: hidden;
		pointer-events: none; /* 防止懸浮窗干擾滑鼠點擊按鈕本身 */
		transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
		z-index: 999;
		text-align: left; /* 確保文字靠左對齊 */
	}

	/* 滑鼠滑入時，優雅浮現 */
	#promoServiceCard:hover .promo-popover {
		opacity: 1;
		visibility: visible;
		transform: translateX(-50%) translateY(0);
	}

	/* 懸浮窗小標題 */
	.promo-popover-title {
		font-size: 0.9rem;
		font-weight: 800;
		color: #c2242d; /* 六信品牌紅 */
		border-bottom: 1px solid #edf2f7;
		padding-bottom: 6px;
		margin-bottom: 10px;
		display: flex;
		align-items: center;
		gap: 6px;
	}

	/* 標題旁閃爍的小紅點（增加即時感） */
	.pulse-dot {
		width: 6px;
		height: 6px;
		background-color: #c2242d;
		border-radius: 50%;
		display: inline-block;
		box-shadow: 0 0 0 0 rgba(194, 36, 45, 0.4);
		animation: dotPulse 1.5s infinite;
	}

	@keyframes dotPulse {
		0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(194, 36, 45, 0.7); }
		70% { transform: scale(1); box-shadow: 0 0 0 6px rgba(194, 36, 45, 0); }
		100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(194, 36, 45, 0); }
	}

	/* 訊息列表設定 */
	.promo-popover-list {
		list-style: none;
		padding: 0;
		margin: 0;
	}

	.promo-popover-list li {
		font-size: 0.8rem;
		color: #495057;
		line-height: 1.5;
		margin-bottom: 8px;
		padding-left: 14px;
		position: relative;
		font-weight: 500;
		
		/* 限制單條訊息最多顯示兩行，超出顯示 ... 防止字數過多撐破字卡 */
		display: -webkit-box;
		-webkit-line-clamp: 2;
		-webkit-box-orient: vertical;
		overflow: hidden;
	}

	.promo-popover-list li:last-child {
		margin-bottom: 0;
	}

	/* 消息項目的精緻小箭頭 */
	.promo-popover-list li::before {
		content: "•";
		color: #c2242d;
		font-weight: bold;
		position: absolute;
		left: 2px;
		top: -1px;
		font-size: 1rem;
	}
	/* ========================================================
	   側邊欄微型快捷服務網格 (Mini Sidebar Grid)
	   ======================================================== */
	.services-sidebar-grid {
		display: grid;
		grid-template-columns: repeat(2, 1fr); /* 強制兩欄 */
		gap: 10px; /* 緊湊的間距 */
		width: 100%;
	}

	.service-item-card-mini {
		background: #ffffff;
		border-radius: 14px;
		padding: 12px 6px;
		display: flex;
		flex-direction: column;
		align-items: center;
		justify-content: center;
		box-shadow: 0 2px 10px rgba(0,0,0,0.03);
		border: 1px solid #f1f3f5;
		text-decoration: none !important;
		transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
		position: relative;
		/* 取消 overflow hidden 確保懸浮視窗能跑出來 */
		overflow: visible; 
	}

	.service-item-card-mini:hover {
		transform: translateY(-3px);
		box-shadow: 0 8px 20px rgba(194, 36, 45, 0.08);
		border-color: rgba(194, 36, 45, 0.15);
	}

	/* 微型 SVG 底座 */
	.service-icon-wrapper-mini {
		width: 44px; /* 縮小尺寸 */
		height: 44px;
		background: #f8f9fa;
		border-radius: 50%;
		display: flex;
		align-items: center;
		justify-content: center;
		margin-bottom: 8px;
		transition: all 0.3s ease;
	}

	.service-item-card-mini:hover .service-icon-wrapper-mini {
		background: #fff0f1;
		transform: scale(1.1);
	}

	/* 微型 SVG 內部線條 (繼承雙色調屬性) */
	.service-icon-wrapper-mini svg {
		width: 24px;
		height: 24px;
	}

	.service-item-card-mini .icon-main {
		fill: none;
		stroke: #2c3e50;
		stroke-width: 1.5;
		stroke-linecap: round;
		stroke-linejoin: round;
		transition: stroke 0.3s ease;
	}
	.service-item-card-mini .icon-accent-stroke {
		fill: none;
		stroke: #c2242d;
		stroke-width: 1.5;
		stroke-linecap: round;
		stroke-linejoin: round;
	}
	.service-item-card-mini .icon-accent-fill {
		fill: #ffe3e4;
		stroke: none;
		transition: fill 0.3s ease;
	}

	.service-item-card-mini:hover .icon-main { stroke: #c2242d; }
	.service-item-card-mini:hover .icon-accent-fill { fill: #ffd1d3; }

	/* 網格文字 */
	.service-item-card-mini span {
		font-size: 1rem; /* 🌟 關鍵修改：從原本的 0.85rem 放大到 1rem (約 16px) */
		font-weight: 800; /* 🌟 關鍵修改：稍微加粗，讓放大的字體更有精神且清晰 */
		color: #2c3e50;
		text-align: center;
		letter-spacing: 0.5px;
		transition: color 0.3s ease;
		margin-top: 4px; /* 增加一點與上方圖示的距離，避免字變大後顯得擁擠 */
	}

	.service-item-card-mini:hover span {
		color: #c2242d;
	}

	/* 宣導專區的懸浮窗方向調整 (從往上浮改為往左側浮出) */
	#promoServiceCard:hover .promo-popover {
		opacity: 1;
		visibility: visible;
		/* 從按鈕的左側滑出，避免被螢幕右邊緣切到 */
		transform: translateX(0) translateY(0); 
	}	
	
	/* ========================================================
	   ✨ Shepherd.js 導覽對話框美化 (尊榮質感升級版)
	   ======================================================== */
	/* 對話框外觀本體 */
	.shepherd-element {
		border-radius: 16px !important;
		box-shadow: 0 15px 40px rgba(194, 36, 45, 0.15) !important; /* 帶有品牌紅的高階陰影 */
		border: 1px solid rgba(194, 36, 45, 0.1) !important;
		background: #ffffff !important;
		font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft JhengHei", sans-serif !important;
		overflow: hidden; /* 確保圓角完美呈現 */
		z-index: 9999 !important;
	}

	/* 頂部標題區 (給予微粉紅的底色增加層次) */
	.shepherd-has-title .shepherd-content .shepherd-header {
		background: #fffafb !important;
		padding: 16px 24px !important;
		border-bottom: 1px solid #ffeff0 !important;
	}

	/* 標題文字 */
	.shepherd-title {
		color: #c2242d !important; /* 六信品牌紅 */
		font-weight: 800 !important;
		font-size: 1.15rem !important;
		display: flex;
		align-items: center;
		line-height: 1.4 !important;
	}

	/* 關閉按鈕 (右上角 ✖) */
	.shepherd-cancel-icon {
		color: #adb5bd !important;
		transition: all 0.3s ease !important;
		font-size: 1.5rem !important;
	}
	.shepherd-cancel-icon:hover {
		color: #c2242d !important;
		transform: scale(1.2) rotate(90deg); /* 加入輕微的旋轉特效 */
	}

	/* 內容文字區 */
	.shepherd-text {
		padding: 20px 24px !important;
		color: #495057 !important;
		font-size: 1rem !important;
		line-height: 1.6 !important;
	}

	/* 底部按鈕區 */
	.shepherd-footer {
		padding: 16px 24px !important;
		background: #f8f9fa !important;
		border-top: 1px solid #f1f3f5 !important;
		display: flex;
		gap: 12px;
		justify-content: flex-end; /* 讓按鈕靠右對齊 */
	}

	/* 按鈕通用與主要按鈕 (下一步/完成) */
	.shepherd-button {
		background: #c2242d !important;
		color: #ffffff !important;
		border-radius: 8px !important;
		padding: 10px 20px !important;
		font-weight: 600 !important;
		transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
		border: none !important;
		box-shadow: 0 4px 10px rgba(194, 36, 45, 0.2) !important;
	}
	.shepherd-button:hover {
		background: #a51c23 !important;
		transform: translateY(-2px); /* 移入時按鈕微幅上浮 */
		box-shadow: 0 6px 15px rgba(194, 36, 45, 0.3) !important;
	}

	/* 次要按鈕 (上一步/加入書籤提示) */
	.shepherd-button.shepherd-button-secondary {
		background: #e9ecef !important;
		color: #495057 !important;
		box-shadow: none !important;
	}
	.shepherd-button.shepherd-button-secondary:hover {
		background: #dee2e6 !important;
		color: #2c3e50 !important;
		transform: translateY(-2px);
	}

	/* 氣球小箭頭顏色對齊背景 */
	.shepherd-arrow::before {
		background: #ffffff !important;
	}
	/* 當箭頭指向上方(也就是貼著標題區)時，顏色與標題區同步 */
	.shepherd-element[data-popper-placement^="bottom"] .shepherd-arrow::before {
		background: #fffafb !important; 
	}
	/* ========================================================
   手機版佈局重排：將「網路銀行及選單」移至「輪播圖」正下方
   ======================================================== */
	@media (max-width: 991px) {
    /* 1. 將主外框設為彈性盒子 (Flexbox) 以啟用排序功能 */
    .hero-section {
        display: flex !important;
        flex-direction: column !important;
    }
    
    /* 2. 關鍵技術：破除 Bootstrap 左右兩欄網格的層級限制 
          這會讓內部的區塊直接聽從 .hero-section 的排序指令 */
    .hero-section > .col-lg-8,
    .hero-section > .col-lg-4 {
        display: contents !important;
    }
    
    /* 3. 重新自訂手機版的由上到下顯示順序 */
    #slider1_container {
        order: 1 !important; /* 第一位：輪播圖 */
    }
    
    .hero-cta-sidebar {
        order: 2 !important; /* 第二位：網路銀行及所有快捷選單 */
        margin-top: 20px !important; /* 增加與上方輪播圖的距離 */
        margin-bottom: 20px !important; /* 增加與下方跑馬燈的距離 */
    }
    
    #maqueeDIV {
        order: 3 !important; /* 第三位：跑馬燈 */
        margin-top: 0 !important;
    }
    
    .video-section {
        order: 4 !important; /* 第四位：宣導影片 */
    }
}
/* ========================================================
   為聯絡面板加入「背景浮水印」與「平衡提示框」，徹底消滅空洞感
   ======================================================== */

/* 1. 裝飾性巨大浮水印 */
.card-watermark {
    position: absolute;
    right: -15px;
    bottom: -15px;
    width: 150px;
    height: 150px;
    opacity: 0.04; /* 非常淡，完全不會干擾文字閱讀 */
    z-index: 0;
    pointer-events: none;
    transform: rotate(-10deg);
    transition: all 0.4s ease;
}

/* 滑鼠移入時，浮水印會俏皮地轉正並微亮 */
.contact-action-inner:hover .card-watermark {
    transform: rotate(0deg) scale(1.1);
    opacity: 0.08;
}

/* 對應三張卡片的主題色 */
.card-lost .card-watermark { stroke: #e53e3e; }
.card-complain .card-watermark { stroke: #3182ce; }
.card-report .card-watermark { stroke: #805ad5; }

/* 確保卡片內所有的文字與內容，層級都高於浮水印 */
.contact-action-inner > div {
    position: relative;
    z-index: 1;
}

/* 2. 中間申訴卡片的平衡提示框 (與右邊地址框風格呼應) */
.card-highlight-box {
    background: #f0f7ff; 
    border-radius: 12px;
    padding: 12px 16px;
    border: 1px solid #e0f2fe;
}
.highlight-hd { font-size: 0.8rem; font-weight: 800; color: #0284c7; margin-bottom: 4px; }
.highlight-bd { font-size: 0.85rem; color: #334155; line-height: 1.5; }

/* ========================================================
   ✨ 主卡片：個人網路銀行 (活潑化升級)
   ======================================================== */
/* 1. 確保反光特效不會超出卡片邊界 */
.cta-card-main {
    overflow: hidden; 
    z-index: 1;
}

/* 2. 新增：動態雷射掃光特效 (每 5 秒掃過一次，吸引目光) */
.cta-card-main::after {
    content: '';
    position: absolute;
    top: 0;
    left: -150%;
    width: 60%;
    height: 100%;
    background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,0.3) 50%, rgba(255,255,255,0) 100%);
    transform: skewX(-25deg);
    animation: livelyShine 5s infinite;
    pointer-events: none; /* 確保不會阻擋點擊 */
    z-index: 0;
}
@keyframes livelyShine {
    0% { left: -150%; }
    15% { left: 200%; }
    100% { left: 200%; }
}

/* 3. 新增：左上角圖示持續產生「呼吸浮動感」 */
.cta-card-main .cta-icon-wrapper {
    animation: livelyFloat 3s ease-in-out infinite;
    position: relative;
    z-index: 2;
}
@keyframes livelyFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); } /* 輕微上浮 */
}

/* 4. 覆寫：右下角箭頭 Hover 時的「果凍彈跳」效果 */
.cta-card-main:hover .cta-arrow {
    background: #ffffff;
    color: #c2242d;
    animation: livelyBounce 1s ease-in-out infinite;
    box-shadow: 0 4px 15px rgba(255,255,255,0.4);
}
@keyframes livelyBounce {
    0%, 100% { transform: translateX(5px); }
    50% { transform: translateX(12px); } /* 彈跳位移 */
}


/* ========================================================
   ✨ 次卡片：人才招募 & 房地拍賣 (活潑化升級)
   ======================================================== */
/* 1. 覆寫：讓卡片的過渡動畫更具「Q彈感 (Cubic-bezier)」 */
.cta-card-sub {
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important; 
}

/* 2. 覆寫：滑鼠移入時，卡片上浮幅度加大，並微微放大 */
.cta-card-sub:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 12px 25px rgba(0,0,0,0.1);
}

/* 3. 覆寫：滑鼠移入時，圖示不僅放大，還會「俏皮傾斜」 */
.cta-card-sub:hover .sub-icon {
    transform: scale(1.2) rotate(-10deg);
}

/* 4. 微調：讓底部的紅線展開更有彈性 */
.cta-card-sub::after {
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* ========================================================
   📱 手機版專屬優化：增加留白、釋放空間壓迫感
   ======================================================== */
@media (max-width: 991px) {
	
/* 強制讓整個主內容區向內縮，保留左右呼吸空間 */
    main.container {
        padding-left: 5vw !important;  /* 左右各保留 5% 的螢幕寬度作為留白 */
        padding-right: 5vw !important;
        overflow-x: hidden; /* 同時防止內部有過寬的元素撐破螢幕產生橫向捲軸 */
    }

    /* 確保所有列 (.row) 的負邊距不會抵銷掉我們剛剛加上的安全空間 */
    .row {
        margin-left: 0 !important;
        margin-right: 0 !important;
    }
    
    /* 修正資訊卡片區塊，防止在手機上過度伸展 */
    .bank-glass-card {
        padding: 20px 15px !important;
    }	
	
    /* 1. 加大各個主區塊的垂直距離 */
    .hero-cta-sidebar {
        margin-top: 35px !important; 
        margin-bottom: 35px !important;
    }
    
    .news-bulletin-board {
        margin-top: 40px !important;
        margin-bottom: 40px !important;
        padding: 35px 20px 45px 20px !important; /* 底部多留一點空間給暫停按鈕 */
    }

    /* 2. 微調微型服務網格，拉開呼吸空間 */
    .services-sidebar-grid {
        gap: 16px; 
        margin-top: 25px;
    }

    /* 3. 拆解聯絡面板：將原本連在一起的巨大文字牆，拆成三張獨立卡片 */
    .unified-contact-container {
        background: transparent !important;
        box-shadow: none !important;
        border: none !important;
    }
    
    .contact-col {
        margin-bottom: 20px; /* 讓三張卡片之間產生距離 */
        border-bottom: none !important;
    }
    
    .contact-col:last-child {
        margin-bottom: 0;
    }

    /* 讓拆解後的內部區塊長出自己的圓角與陰影 */
    .contact-action-inner {
        background: #ffffff;
        border-radius: 20px;
        box-shadow: 0 4px 15px rgba(0,0,0,0.06);
        border: 1px solid #edf2f7;
    }
}