/* [Layout] */

/* CSS Variables for better maintainability */
:root {
  /* 主要品牌顏色 */
  --primary-color: #0082ca;
  --secondary-color: #ffea00;
  --accent-color: #fff301;
  
  /* 文字顏色 */
  --text-primary: #222;
  --text-secondary: #777;
  --text-light: #666;
  --text-muted: #b3b3b3;
  --text-white: #ffffff;
  
  /* 背景顏色 */
  --bg-primary: #ffffff;
  --bg-secondary: #f6f6f6;
  --bg-dark: #222;
  --bg-darker: #404040;
  --bg-footer: #333333;
  
  /* 邊框和分隔線顏色 */
  --border-light: #ebebeb;
  --border-medium: #dddcdc;
  --border-dark: #515151;
  
  /* 陰影效果 */
  --text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
  --box-shadow-light: 0 2px 4px rgba(0, 0, 0, 0.1);
  --box-shadow-medium: 0 4px 8px rgba(0, 0, 0, 0.15);
  
  /* 字體設定 */
  --font-family-primary: "Segoe UI", Roboto, Helvetica, Arial, "PingFang TC", "Hiragino Sans TC", "Source Han Sans TW", "Source Han Sans TC", "Noto Sans CJK TC", "Microsoft JhengHei", "Heiti TC", PMingLiU, sans-serif;
  
  /* 字體大小 - 符合Google SEO標準 */
  --font-size-small: 14px;
  --font-size-base: 16px;
  --font-size-medium: 18px;
  --font-size-large: 22px;
  --font-size-xl: 28px;
  --font-size-xxl: 36px;
  
  /* 間距 */
  --spacing-xs: 5px;
  --spacing-sm: 10px;
  --spacing-md: 15px;
  --spacing-lg: 20px;
  --spacing-xl: 30px;
  --spacing-xxl: 50px;
  
  /* 轉場效果 */
  --transition-fast: all 0.3s ease;
  --transition-normal: all 0.5s ease;
  --transition-slow: all 1s ease;
  
  /* 圓角 */
  --border-radius-sm: 4px;
  --border-radius-md: 8px;
  --border-radius-lg: 12px;
  --border-radius-circle: 50%;
}

/*--------------------------------------

	* Import Css
	
	* Body
		- Padding/Margin
	
	* Header

	* Footer
	
	* Page Banner
	
	* Section Header
	
	* Pagination
	
	* Responsive		
		- min-width: 1200
		- min-width: 992
		- min-width: 768
		- max-width: 1200
		- min-width: 992 to max-width: 1199		
		- max-width: 991
		- min-width: 768 to max-width: 991
		- max-width: 767
		- max-width: 639
		- max-width: 479
-------------------------------------------*/

/* * Body */

body {
	font-family: var(--font-family-primary);
	font-size: var(--font-size-base);
	line-height: 1.6;
	color: #333;
	overflow-x: hidden;
}
img {
    max-width: 100%;
	height: auto;
}
a {
    outline: 0 !important;
}

/* - Padding/Margin */
.no-padding {
	padding: 0;
}
.no-left-padding{
	padding-left: 0;
}
.no-right-padding {
	padding-right: 0;
}
.no-top-padding {
	padding-top: 0;
}
.no-bottom-padding {
	padding-bottom: 0;
}
.no-margin {
	margin: 0;
}
.no-left-margin {
	margin-left: 0;
}
.no-right-margin {
	margin-right: 0;
}
.no-top-margin {
	padding-top: 0;
}
.no-bottom-margin {
	margin-bottom: 0;
}

/* - OW pull-left/pull-right */
.ow-pull-left  {
	float: left;
}
.ow-pull-right  {
	float: right;
}

/* - Section Padding */
.section-padding {
	padding-top: 50px;
	padding-bottom: 50px;
}

/* * Header */

/* - Top Header */
.top-header {
	background-color: #0082ca;
	padding-top: 15px;
	padding-bottom: 15px;
}
.header-social li a {
	color: var(--text-white);
	text-shadow: var(--text-shadow);
	font-weight: 600;
	transition: var(--transition-normal);
	text-decoration: none;
}

.header-social li a:hover,
.header-social li a:focus {
	color: var(--secondary-color);
	outline: none;
	transform: scale(1.1);
}
.top-header .header-social .heading5 {
	color: #fff;
	display: inline-block;
	font-family: var(--font-family-primary);
	font-size: var(--font-size-small);
	letter-spacing: 0.48px;
	line-height: 28px;
	margin: 0;
	text-transform: capitalize;
}
.top-header .header-social ul {
	display: inline-block;
	margin-bottom: 0;
	padding-left: 8px;
}
.top-header .header-social ul li {
	display: inline-block;
	margin-right: 16px;
}
.top-header .header-social ul li:last-child {
	margin-right: 0;
}
.top-header .header-social ul li a {
	color: #fff;
	-webkit-transition: all 1s ease 0s;
	-moz-transition: all 1s ease 0s;
	-o-transition: all 1s ease 0s;
	transition: all 1s ease 0s;
}

.top-header .header-social ul li i {
	font-size: 24px;
}

.top-header .header-social ul li a:hover {
	color: #ffea00;
}
.top-header .info {
	text-align: right;
}
.top-header .info p {
	display: inline-block;
	font-family: var(--font-family-primary);
	font-size: var(--font-size-base);
	line-height: 28px;
	margin-bottom: 0;
	margin-left: 60px;
}
.top-header .info p:first-child {
	margin-left: 0;
}
.top-header .info p > a {
	color: var(--text-white);
	text-decoration: none;
	text-shadow: var(--text-shadow);
	font-weight: 600;
	transition: var(--transition-normal);
}

.top-header .info p > a:hover,
.top-header .info p > a:focus {
	color: var(--secondary-color);
	outline: 2px solid var(--secondary-color);
	outline-offset: 2px;
}
.top-header .info p > a:hover {
	color: #ffea00;
}
.top-header .info p i {
	color: #ffea00;
	padding-right: 11px;
}

/* - Top Header 1 */
.top-header-1 {
	background-color: #fff;
	padding-bottom: 46px;
	padding-top: 46px;
}
.top-header-1 .logo-block a.navbar-brand {
	padding: 0;
}
.top-header-1 .info {
	text-align: center;
	padding-top: 20px;
	padding-bottom: 20px;
}
.top-header-1 .info p {
	font-size: var(--font-size-small);
	margin-left: 0;
	display: inline-block;
	position: relative;
}
.top-header-1 .info p::after {
	content: "|";
	color: #888;
	padding: 0 25px;
}
.top-header-1 .info p:last-child::after {
	content: "";
}
.top-header-1 .info p i {
	color: #0082ca;
}
.top-header-1 .info p > a {
	color: #333;
}
.top-header-1 .info p > a:hover {
	color: #0082ca;
}
.top-header-1 .search-block {
	padding-bottom: 10px;
	padding-top: 10px;
}
.top-header-1 .search-block .form-control {
	border-color: #ebebeb;
	border-radius: 8px;
	border-right: none;
	color: #333;
	font-family: var(--font-family-primary);
	font-size: var(--font-size-small);
	letter-spacing: 0.6px;
	padding: 6px 50px 6px 30px;
}
.top-header-1 .search-block .form-control,
.top-header-1 .search-block  .btn-search {
	height: 45px;
	box-shadow: none;
	outline: none;
}
.top-header-1 .search-block .form-control:focus {
	outline: none;
}
.top-header-1 .search-block .form-control::-webkit-input-placeholder {
   color: #333;
}
.top-header-1 .search-block .form-control:-moz-placeholder { /* Firefox 18- */
   color: #333;
}
.top-header-1 .search-block .form-control::-moz-placeholder {  /* Firefox 19+ */
   color: #333;
}
.top-header-1 .search-block .form-control:-ms-input-placeholder {
   color: #333;
}
.top-header-1 .search-block  .btn-search {
	color: #333;
	padding: 11px 16px;
	border-radius: 8px;
	margin-left: -40px;
	z-index: 3;
}

/* * Footer */

/* - Footer Main */
.footer-main {
	background-image: url("../images-webp/footer-bg.png.webp");
	background-repeat: n0-repeat;
	background-size: cover;
	position: relative;
	padding: 50px 0; /*120 0*/
}
.footer-main::before {
	background-color: rgba(51, 51, 51, 0.95);
	content: "";
	display: inline-block;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	position: absolute;
}
.footer-main .ftr-widget .widget-title {
	color: #fff;
	font-size: var(--font-size-base);
	font-family: var(--font-family-primary);
	font-weight: 600;
	letter-spacing: 0.6px;
	line-height: 26px;
	margin-bottom: 26px;
	text-transform: uppercase;
	margin-top: 0;
}
.footer-main .ftr-widget ul {
	padding-left: 0;
	list-style: none;
	margin-bottom: 0;
}
.footer-main .ftr-widget ul li {
	margin-bottom: 15px;
}
.footer-main .ftr-widget ul li:last-child {
	margin-bottom: 0;
}
.footer-main .ftr-widget ul li a {
	color: #ccc; /* 777 */
	font-weight: 600;
	font-size: var(--font-size-base);
	text-decoration: none;
	transition: var(--transition-normal);
}
.footer-main .ftr-widget ul li a:hover {
	color: #ffea00;
}
.footer-main .ftr-widget ul li a[href*='facebook'] {
	color: #FFF;
	font-size: 28px;
}
.footer-main .ftr-widget ul li a[href*='facebook'] i {
	color: #6695ff;
}
.footer-main .ftr-widget.widget_post .ftr-latest-content {
	border-bottom: 1px solid #515151;
	display: inline-block;
	position: relative;
	padding-left: 80px; /* 100 */
	padding-bottom: 16px;
	padding-top: 10px;
}
.footer-main .ftr-widget.widget_post .ftr-latest-content:last-child {
	border-bottom: none;
	padding-top: 22px;
}
.footer-main .widget_post .ftr-latest-content > a > i {
	position: absolute;
	left: 0;
}
.footer-main .widget_post .ftr-latest-content .heading5 {
	font-family: var(--font-family-primary);
	font-size: var(--font-size-small);
	letter-spacing: 0.52px;
	line-height: 20px;
	margin-top: 0;
}
.footer-main .widget_post .ftr-latest-content .heading5 > a {
	color: #fff;
	text-decoration: none;
}
.footer-main .widget_post .ftr-latest-content .heading5 > a:hover {
	color: #ffea00;
}
.footer-main .widget_post .ftr-latest-content span {
	color: #ccc; /* 777 */
	display: inline-block;
	font-size: var(--font-size-small);
	letter-spacing: 0.65px;
	margin-bottom: 10px;
}
.footer-main .widget_post .ftr-latest-content a.read-more {
	color: #ffea00;
	font-family: var(--font-family-primary);
	font-size: var(--font-size-small);
	letter-spacing: 0.6px;
	text-transform: capitalize;
	text-decoration: none;
	transition: var(--transition-normal);
}
.footer-main .widget_post .ftr-latest-content a.read-more:hover {
	color: #fff;
}
.footer-main .ftr-widget.widget_post .ftr-latest-content p {
	color: #fff !important; /* 設定widget_post中p標籤文字為白色，適合深色背景，使用!important確保優先級 */
}
.footer-main .widget_contact {
	padding-left: 80px;
}
.footer-main .widget_contact .ftr-contact-content {
	display: inline-block;
	margin-bottom: 25px;
}
.footer-main .widget_contact .ftr-contact-content .heading5 {
	color: #fff;
	font-family: var(--font-family-primary);
	font-weight: 600;
	font-size: var(--font-size-base);
	letter-spacing: 0.52px;
	line-height: 26px;
	margin-top: 0;
	margin-bottom: 5px;
}
.footer-main .widget_contact .ftr-contact-content p {
	color: #ccc;
	font-family: var(--font-family-primary);
	font-size: var(--font-size-base);
	line-height: 26px;
	margin-bottom: 0;
}
.footer-main .widget_contact .ftr-contact-content p > a {
	color: #ccc;
	font-size: var(--font-size-base);
}
.copyright-section {
	background-color: #1a1a1a;
	padding: 20px 0;
}
.copyright-section .coyright-content {
	display: inline-block;
}
.copyright-section .coyright-content p {
	color: #f0f0f0;
	font-family: var(--font-family-primary);
	font-weight: 700;
	font-size: var(--font-size-small);
	margin-bottom: 0;
	margin-top: 10px;
}
.copyright-section .coyright-content p a {
	color: #ffffff;
	text-decoration: none;
	font-weight: 700;
}
.copyright-section .coyright-content p a:hover,
.copyright-section .coyright-content p a:focus {
	color: #ffea00;
	text-decoration: underline;
}
.copyright-section ul {
	padding-left: 0;
	margin-bottom: 0;
}
.copyright-section ul li {
	display: inline-block;
	margin-left: 20px;
}
.copyright-section ul li:first-child {
	margin-left: 0;
}
.copyright-section ul li a {
	background-color: #3b5998; /* 323232 */
	border-radius: 100%;
	color: #FFF; /* 777 */
	display: inline-block;
	height: 42px; /* 36 */
	width: 42px; /* 36 */
	line-height: 42px; /* 36 */
	text-align: center;
	font-size: 24px;
}
.copyright-section ul li a:hover {
	color: #ffea00;
}

/* - Footer Main 1 */
.footer-main-1 {
	background-color: #222;
	padding: 130px 0;
}
.footer-main-1 .widget_brand a.navbar-brand {
	padding: 50px 0;
}
.footer-main-1 .ftr-widget .widget-title {
	color: #fff;
	font-family: var(--font-family-primary);
	font-weight: 600;
	font-size: var(--font-size-base);
	line-height: 26px;
	margin-top: 0;
	margin-bottom: 18px;
}
.footer-main-1 .ftr-widget p {
	color: #333;
	font-family: var(--font-family-primary);
	font-size: var(--font-size-small);
	letter-spacing: 0.6px;
	line-height: 26px;
	margin-bottom: 0;
}
.footer-main-1 .widget_about ul {
	padding-left: 0;
	margin-bottom: 0;
	margin-top: 50px;
}
.footer-main-1 .widget_about ul li {
	display: inline-block;
	margin-left: 20px;
}
.footer-main-1 .widget_about ul li:first-child {
	margin-left: 0;
}
.footer-main-1 .widget_about ul li a {
	background-color: #323232;
	border-radius: 100%;
	color: #333;
	display: inline-block;
	height: 36px;
	width: 36px;
	line-height: 36px;
	text-align: center;
	-webkit-transition: all 1s ease 0s;
	-moz-transition: all 1s ease 0s;
	-o-transition: all 1s ease 0s;
	transition: all 1s ease 0s;
}
.footer-main-1 .widget_about ul li a:hover {
	color: #fff301;
}
.footer-main-1 .widget_links {
	padding-left: 80px;
}
.footer-main-1 .widget_links ul {
	padding-left: 0;
	list-style: none;
}
.footer-main-1 .widget_links ul li {
	margin-bottom: 3px;
}
.footer-main-1 .widget_links ul li a {
	color: #333;
	font-family: var(--font-family-primary);
	font-size: var(--font-size-small);
	letter-spacing: 0.6px;
	line-height: 26px;
	text-decoration: none;
	transition: var(--transition-normal);
}
.footer-main-1 .widget_links ul li a:hover {
	color: #ffea00;
}
.footer-main-1 .widget_email .ftr-contact-content {
	border-bottom: 1px solid #515151;
	padding-bottom: 18px;
}
.footer-main-1 .widget_email .ftr-contact-content:last-child {
	border-bottom: none;
	padding-top: 18px;
}
.footer-main-1 .widget_email .ftr-contact-content p > a {
	color: #333;
}
.copyright-section-1 {
	background-color: #404040;
	text-align: center;
}
.copyright-section-1 .coyright-content p {
	font-size: var(--font-size-small);
	margin-top: 0;
}

/* * Page Banner */
.page-banner {
	background-image: url("../images-webp/title.jpg.webp");
	background-size: cover;
	background-repeat: no-repeat;
	position: relative;
	margin-bottom: 150px;
	padding: 100px 0; /* 200 0 */
	z-index: 1;
}
.page-banner::before {
	background-color: rgba(16, 38, 50, 0.4); /* rgba(16, 38, 50, 0.8) */
	content: "";
	display: inline-block;
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	z-index: -1;
}
.page-banner .banner-content .heading3 {
	color: #fff;
	display: inline-block;
	font-family: "Segoe UI", Roboto, Helvetica, Arial, "PingFang TC", "Hiragino Sans TC", "Source Han Sans TW", "Source Han Sans TC", "Noto Sans CJK TC", "Microsoft JhengHei", "Heiti TC", PMingLiU, sans-serif;
	font-size: 36.07px;
	letter-spacing: 1.8053px;
	line-height: 60.12px;
	margin: 0;
	text-transform: uppercase;
}
.page-banner .banner-content .breadcrumb {
	background-color: transparent;
	float: right;
	margin-bottom: 0;
	padding: 16px 15px;
}
.page-banner .banner-content .breadcrumb li,
.page-banner .banner-content .breadcrumb li a {
	color: #fff;
	font-family: "Segoe UI", Roboto, Helvetica, Arial, "PingFang TC", "Hiragino Sans TC", "Source Han Sans TW", "Source Han Sans TC", "Noto Sans CJK TC", "Microsoft JhengHei", "Heiti TC", PMingLiU, sans-serif;
    font-size: 13.03px;
	font-weight: 600;
    text-decoration: none;
	letter-spacing: 0.6515px;
	text-transform: uppercase;
}
.page-banner .banner-content .breadcrumb li.active {
	color: #fff301;
}

.page-banner.about-banner {
	margin-bottom: 0;
}

/* * Section Header */
.section-header {
	text-align: center;
	margin-bottom: 30px; /* 60 */
}
.section-header .heading3 {
	color: #222;
}

/* 修正 Bulma 框架對比度問題 */
.help.is-info,
.has-text-info {
	color: #1a5490 !important; /* 將原本的 #3298dc 改為更深的藍色以提高對比度 */
}

/* 修正 has-text-grey 對比度問題 */
.has-text-grey {
	color: #2d2d2d !important; /* 將原本的 hsl(0, 0%, 48%) 改為更深的灰色以提高對比度 */
	font-weight: 600;
}

/* 確保在深色背景上的可讀性 */
.help {
	font-size: 0.875rem;
	line-height: 1.4;
	font-weight: 500;
}

/* 針對 checkbox 標籤的對比度改善 */
.checkbox span {
	color: #333 !important;
	font-weight: 600;
}

/* 針對服務項目標題的對比度改善 */
.has-text-black {
	color: #1a1a1a !important;
	font-weight: 700;
}

/* 修正 call-out 區塊 h5 文字顏色為白色 - 強制覆蓋所有可能樣式 */
div.call-out h5,
.call-out.container-fluid h5,
.call-out .call-out-content h5,
.call-out h5 {
	color: #ffffff !important;
	text-shadow: 1px 1px 2px rgba(0,0,0,0.5) !important;
}

/* 修正 call-out 區塊 heading5 class 文字顏色為白色 */
div.call-out .heading5,
.call-out.container-fluid .heading5,
.call-out .call-out-content .heading5,
.call-out .heading5 {
	color: #ffffff !important;
	text-shadow: 1px 1px 2px rgba(0,0,0,0.5) !important;
}

.section-header .heading3 span {
	color: #0082ca;
}
.section-header p {
	color: #333;
	font-weight: 300;
	line-height: 26px;
	font-size: var(--font-size-base);
	letter-spacing: 0.75px;
	margin-bottom: 0;
	margin-top: 30px;
}
.section-header .heading5 {
	color: #333; /* b4b0b0 */
	font-size: 20px;
	letter-spacing: 0.8px;
	line-height: 28px;
	margin-top: 30px;
	margin-bottom: 0;
	text-transform: capitalize;
}

/* * Pagination */
.ow-pagination {
	display: inline-block;
	width: 100%;
	background-color: transparent;
	margin-top: 0;
	text-align: right;
}
.ow-pagination ul {
	margin: 0;
}
.ow-pagination ul li {
	display: inline-block;
	margin: 0 8px;
}
.ow-pagination ul li a {
	border: none;
	border-radius: 100%;
	background-color: #dddcdc;
	color: #fff;
	font-size: var(--font-size-small);
	font-family: var(--font-family-primary);
	width: 50px;
	height: 50px;
	line-height: 52px;
	padding: 0;
	text-align: center;
	transition: var(--transition-normal);
}
.ow-pagination .pagination > li:first-child > a,
.ow-pagination .pagination > li:last-child > a {
	border-radius: 0;
	background-color: transparent;
	color: #dddcdc;
	font-size: 20px;
}
.ow-pagination .pagination > li:first-child > a:hover,
.ow-pagination .pagination > li:last-child > a:hover {
	color: #8c8b8b;
}
.ow-pagination ul li a:hover {
	background-color: #fff301;
	border-color: #a04699;
	color: #222;
}

/*----------------------------------------------------

	Responsive
	
------------------------------------------------------*/

/* - min-width: 1200 */
@media (min-width: 1200px) {
	.container {
		width: 1200px;
	}
	/* - Page Banner */
	.page-banner {
		margin-bottom: 100px;
		background-position: 80% 50%;
		padding: 50px 0; /* 200 0 */
	}
}

/* - min-width: 992 */
@media (min-width: 992px) {
	/* * Section Header */
	.section-header p {
		padding: 0 25%;
	}
}

/* - min-width: 992 to max-width: 1199 */
@media only screen and (min-width: 992px) and (max-width: 1199px) {
	/* - Top Header 1 */
	.top-header-1 .info p::after {
		padding: 0 10px;
	}
	/* - Footer Main */
	.footer-main .ftr-widget.widget_post .ftr-latest-content {
		padding-left: 75px;
	}
	.footer-main .widget_contact {
		padding-left: 30px;
	}
	/* - Footer Main 1 */
	.footer-main-1 .widget_about ul li {
		margin-left: 14px;
	}
	/* - Page Banner */
	.page-banner {
		margin-bottom: 100px;
		background-position: 80% 50%;
		padding: 50px 0; /* 200 0 */
	}
}

/* - max-width: 991 */
@media (max-width: 991px) {
	/* - Top Header 1 */
	.top-header-1 {
		padding-bottom: 20px;
		padding-top: 20px;
	}
	.top-header-1 .info {
		text-align: left;
	}
	.top-header-1 .info p::after {
		padding: 0 3px;
	}
	.top-header-1 .col-sm-6.col-xs-12.logo-block {
		display: none;
	}
	/* - Footer Main */
	.footer-main .col-sm-6:nth-child(2n+1) {
		clear: both;
	}
	.footer-main .ftr-widget {
		margin-bottom: 30px;
	}
	.footer-main .widget_post .ftr-latest-content a.read-more {
		display: block;
	}
	.footer-main .widget_contact {
		padding-left: 15px;
	}
	/* - Footer Main 1 */
	.footer-main-1 .col-sm-6:nth-child(2n+1) {
		clear: both;
	}
	.footer-main-1 .ftr-widget {
		margin-bottom: 30px;
	}
	.footer-main-1 .widget_links {
		padding-left: 15px;
	}
	/* - Page Banner */
	/*.page-banner {
		padding: 100px 0;
	}*/
	/* - Page Banner */
	.page-banner {
		margin-bottom: 100px;
		background-position: 80% 50%;
		padding: 50px 0; /* 200 0 */
	}
}


/* - max-width: 767 */
@media (max-width: 767px) {
	/* - Top Header */
	.top-header {
		padding-top: 10px;
		padding-bottom: 5px;
	}
	.top-header .header-social {
		width: 100%;
		/*margin-bottom: 20px;*/
		text-align: center;
	}
	.top-header .info {
		text-align: center;
	}
	/* - Footer Main 1 */
	.footer-main-1 .widget_about ul li {
		margin-left: 12px;
	}
	/* - Page Banner */
	.page-banner {
		margin-bottom: 100px;
		background-position: 80% 50%;
		padding: 50px 0; /* 200 0 */
	}
	/* section-header */
	.section-header .heading3 {
		font-size: 28px;
	}

}

/* -  max-width: 639 */
@media (max-width: 639px) {
	/* - Top Header */
	.top-header .info p {
		margin-left: 20px;
	}
	.top-header-1 .info p {
		margin-left: 0;
	}
	/* - Page Banner */
	.page-banner .banner-content .heading3 {
		font-size: 30px;
	}
}

/* -  max-width: 479 */
@media (max-width: 479px) {
	/* - Page Banner */
	.banner-content {
		text-align: center;
	}
	.page-banner .banner-content .breadcrumb {
		float: none;
	}
	.ow-pagination ul li a {
		height: 40px;
		width: 40px;
		line-height: 42px;
	}
	.ow-pagination ul li {
		margin: 0 4px;
	}
	/* - Footer Main */
	.footer-main {
		padding: 80px 0;
	}
	.footer-main .col-xs-6 {
		width: 100%;
	}
	.copyright-section .coyright-content {
		display: block;
		width: 100%;
		text-align: center;
	}
	.copyright-section ul {
		float: none !important;
		text-align: center;
		margin-top: 15px;
	}
	/* - Footer Main 1 */
	.footer-main-1 {
		padding: 100px 0;
	}
	.footer-main-1 .col-xs-6 {
		width: 100%;
	}
	.footer-main-1 .widget_brand a.navbar-brand {
		padding: 0;
	}
	.footer-main-1 .widget_about ul {
		margin-top: 30px;
	}
}

/* 無障礙性改善 */
.sr-only {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

.focus-visible {
	outline: 2px solid var(--primary-color);
	outline-offset: 2px;
}

/* 高對比度模式支援 */
@media (prefers-contrast: high) {
	:root {
		--text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
	}
}

/* 減少動畫偏好支援 */
@media (prefers-reduced-motion: reduce) {
	:root {
		--transition-fast: none;
		--transition-normal: none;
		--transition-slow: none;
	}
	
	.header-social li a:hover {
		transform: none;
	}
}

/* 列印樣式 */
@media print {
	.top-header {
		background: white !important;
		color: black !important;
	}
	
	.header-social li a,
	.top-header .info p > a {
		color: black !important;
		text-shadow: none !important;
	}
}
