/*common*/
.container.area {
    position: relative;
	max-width: 1000px;
	margin: 0 auto;
	padding: 20px;
	box-sizing: border-box;
	width: 100%;
	overflow-x: hidden; /* 确保容器不出现水平滚动 */
}
/* 新增導航按鈕樣式 */
.nav-container {
	display: flex;
	justify-content: center;
	margin: 30px auto 20px auto; 
	max-width: 1000px;
	flex-wrap: wrap;
	gap: 16px;
	padding: 0 0px;
    background-color: #ffffff;
    z-index: 1000;
    width: 100%;
    transition: box-shadow 0.3s ease;
}
.nav-button {
	display: inline-block;
	background-color: transparent;
	color: #908068;
	padding: 6px 15px;
	border: 1px solid #908068;
	border-radius: 50px;
	font-size: 14px;
	font-weight: bold;
	text-decoration: none;
	text-align: center;
	transition: all 0.2s ease;
	cursor: pointer;
	-webkit-tap-highlight-color: transparent;
}
.nav-button:hover {
	background-color: #908068;
	color: white;
}
.nav-button.active {
	background-color: #908068;
	color: white;
}
.nav-button:focus,
.nav-button:focus-visible,
.nav-button:focus-within,
.nav-button:-moz-focusring {
	outline: none;
	box-shadow: none;
	-webkit-box-shadow: none;
	text-decoration: none;
}
@media (max-width: 768px) {
    .nav-button {
        padding: 5px 12px;
        font-size: 12px;
    }
}

/*header*/
.header-container {
	text-align: center;
}
.header-container img {
	max-width: 158px;
	height: auto;
}
.page-title {
	font-size: 1.8rem;
	margin-bottom: 30px;
	color: #333;
}
.green-text {
	color: #4CAF50;
	font-weight: bold;
}
.heading-text .blue-text {
	color: #0066cc;
}
.orange-text {
	color: #FF6600;
	font-weight: bold;
}
.red-text {
	color: #CB403E;
	font-weight: bold;
}

/*===about===*/
.header-container .logo-icon {
	margin-bottom: 15px;
	display: inline-block;
}
.header-container .logo-icon img {
	max-width: 158px;
	height: auto;
}
.brand-story {
	background-color: #ffffff;
	padding: 40px;
	border-radius: 15px;
	margin-bottom: 40px;
	box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}
.brand-slogan {
	color: #4CAF50;
	font-size: 1.5rem;
	margin-bottom: 30px;
	text-align: center;
	padding-bottom: 20px;
	border-bottom: 1px solid #eaeaea;
}
.brand-content {
	margin: 0 auto;
	max-width: 800px;
	line-height: 1.8;
}
.brand-content p {
	margin-bottom: 20px;
	text-align: justify;
	font-size: 1.1rem;
}

@media (max-width: 767px) {
	.header-container .logo-icon img {
		max-width: 98px;
	}
	.brand-story {
		padding: 25px;
	}
	.brand-slogan {
		font-size: 1.3rem;
	}
	.brand-content {
		padding: 0 10px;
	}
	.brand-content p {
		font-size: 1rem;
	}
}

/*service-card*/
.service-card {
    background-color: #ffffff;
    border-radius: 15px;
    border: 1px solid #e0e0e0;
    margin-bottom: 30px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
    width: 100%;
}
.service-header {
    background-color: #0066cc;
    color: white;
    padding: 12px 20px;
    text-align: center;
    width: 200px;
    border-radius: 0 0 25px 25px;
    margin: 0 auto;
    position: relative;
    font-size: 1.1rem;
}
.info-text {
	padding: 30px 20px;
	text-align: center;
	margin-bottom: 0px;
	font-size: 1.3rem;
}
.service-content {
	padding: 30px 20px;
	box-sizing: border-box;
	width: 100%;
	overflow-x: hidden; 
}
.service-content h4, 
.service-content h5 {
	margin-top: 20px;
	margin-bottom: 10px;
}
.service-content h5 {
	color: #333;
	font-size: 1.1rem;
}
.service-content p {
	margin-bottom: 10px;
	line-height: 1.8;
}
.service-content a {
	text-decoration: none;
}
.service-content a:hover {
	text-decoration: underline;
}

ul.service-list {
	list-style-type: none;
	padding-left: 15px;
	width: 100%;
	box-sizing: border-box;
	max-width: 100%;
}
ul.service-list li {
	position: relative;
	padding-left: 25px;
	margin-bottom: 20px;
	display: flex;
	align-items: flex-start;
	word-wrap: break-word;
	overflow-wrap: break-word;
	max-width: 100%;
	flex-wrap: wrap; /* 确保flex内容可以换行 */
}
ul.service-list li:before {
	content: "•";
	color: #000000;
	font-weight: bold;
	position: absolute;
	left: 0px;
	top: 0;
}

.highlight-text {
	text-align: center;
	margin-bottom: 20px;
	font-size: 1.3rem;
	word-wrap: break-word;
	overflow-wrap: break-word;
	max-width: 100%;
}
.highlight-text .regular {
	color: #0066cc;
}
.highlight-text .accent {
	color: #4CAF50;
	font-weight: bold;
}

@media (max-width: 768px) {
	.service-header {
		width: 180px;
	}
	
	.highlight-text {
		font-size: 1.2rem;
	}
	ul.service-list li span {
		width: calc(100% - 25px) !important;
	}
}


/*===warranty===*/
.intro-text {
	text-align: center;
	margin-bottom: 30px;
	font-size: 1.2rem;
	color: #555;
	max-width: 800px;
	margin-left: auto;
	margin-right: auto;
	word-wrap: break-word;
	overflow-wrap: break-word;
}
.year-badge {
	display: inline-block;
	background-color: #4CAF50;
	color: white;
	padding: 3px 8px;
	border-radius: 5px;
	margin-right: 5px;
	font-weight: bold;
}
.service-card.warranty-card .service-header {
	background-color: #4CAF50;
	color: white;
	padding: 12px 20px;
	text-align: center;
	width: 200px;
	border-radius: 0 0 25px 25px;
	margin: 0 auto;
	position: relative;
	font-size: 1.1rem;
}
.service-card.warranty-card ul.service-list li {
	position: relative;
	padding-left: 25px;
	margin-bottom: 20px;
	display: flex;
	align-items: flex-start;
	flex-wrap: wrap;
	width: 100%;
	max-width: 100%;
}
.service-card.warranty-card ul.service-list li:before {
	content: "✓";
	color: #4CAF50;
	font-weight: bold;
	position: absolute;
	left: 0px;
	top: 0;
}

@media (max-width: 767px) {
	.intro-text {
		font-size: 1.1rem;
	}
}
