/* 英雄区域 */
.hero {
	height: 100vh;
	/* background: url('/img/address/background.jpg') center/cover; */
	background-color: #003782;
	background-size: 100% auto;
	background-repeat: no-repeat;
	background-position: center top;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	margin-top: 100px;
	color: #fff;
	position: relative;
	z-index: 1;
}

.hero::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(89, 87, 86, 0.3);
	z-index: -1;
}

.hero-content h1 {
	font-size: 62px;
	line-height: 1.5;
	color: white;
}



.principal-intro {
	padding: 50px 140px;
	color: #003782;
	/* 品牌主色 */
}

.section-title {
	text-align: center;
	/* 品牌辅助色（黄色） */
	font-size: 36px;
	font-weight: 700;
	letter-spacing: 0px;
	line-height: 1.5;
	color: rgba(254, 204, 72, 1);
	margin-bottom: 50px;
}

.intro-content {
	display: flex;
	gap: 40px;
	align-items: flex-start;
}

.image-column {
	flex: 0 0 300px;
	text-align: center;
	margin-bottom: 20px;
}

.image-column p {
	font-size: 18px;
	font-weight: 700;
	/* padding-left: 60px; */
}

.principal-img {
	width: 300px;
	height: 400px;
}

.role-label {
	font-size: 18px;
	font-weight: 400;
	letter-spacing: 0px;
	line-height: 1.5;
	color: rgba(0, 55, 130, 1);
}

.text-column {
	flex: 1;
	font-size: 16px;
	line-height: 1.5;
}

.sub-title {
	font-size: 20px;
	font-weight: 700;
	letter-spacing: 0px;
	line-height: 1.5;
	color: rgba(0, 55, 130, 1);
}

.sub-title span {
	font-weight: 700;
	margin-left: 40px;
}

.content-paragraph {
	font-size: 14px;
	margin-bottom: 15px;
}

@media (max-width: 768px) {
	.hero {
		height: 50vh !important;
	}

	.section-title {
		font-size: 18px;
		margin-bottom: 30px;
	}

	.principal-img {
		max-width: 100%;
		height: auto;
	}

	.principal-intro {
		padding: 20px;
	}

	.content-paragraph {
		font-size: 12px;
	}

	.intro-content {
		flex-direction: column;
		align-items: center;
	}

	.image-column {
		margin-bottom: 0;
	}

	.sub-title {
		font-size: 18px;
		margin: 0;
	}
}