@charset "utf-8";

/******************************

[Table of Contents]

1. Main Content Layout
2. Service Section Styles
3. Service Block Styles
4. Responsive Design

******************************/

/*********************************
1. Main Content Layout
*********************************/

.main-content {
	width: 100%;
	padding-top: 80px;
	padding-bottom: 80px;
	background: #FFFFFF;
}

.main-content .row {
	display: flex;
	flex-wrap: wrap;
	margin-left: -15px;
	margin-right: -15px;
}

.main-content .col-lg-5,
.main-content .col-lg-7 {
	position: relative;
	width: 100%;
	padding-left: 15px;
	padding-right: 15px;
}

/*********************************
2. Service Section Styles
*********************************/

.service-section {
	width: 100%;
	margin-bottom: 40px;
}

.section-heading {
	font-family: 'Microsoft YaHei', "微软雅黑", Arial, sans-serif;
	font-size: 28px;
	font-weight: 600;
	color: #2c3e50;
	text-transform: uppercase;
	margin-bottom: 40px;
	padding-bottom: 15px;
	border-bottom: 3px solid #e74c3c;
	letter-spacing: 0.05em;
}

.service-content {
	width: 100%;
}

/*********************************
3. Service Block Styles
*********************************/

.service-block {
	background: #f8f9fa;
	border-radius: 8px;
	padding: 30px;
	margin-bottom: 30px;
	border-left: 4px solid #e74c3c;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-block:hover {
	transform: translateY(-5px);
	box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.service-block-title {
	font-size: 20px;
	font-weight: 600;
	color: #2c3e50;
	margin-bottom: 15px;
	line-height: 1.4;
}

.service-block p {
	font-size: 15px;
	line-height: 1.8;
	color: #555;
	margin-bottom: 20px;
}

.service-sub-list {
	list-style: none;
	padding: 0;
	margin: 0;
}

.service-sub-list li {
	position: relative;
	padding-left: 20px;
	margin-bottom: 12px;
	font-size: 14px;
	line-height: 1.7;
	color: #666;
}

.service-sub-list li::before {
	content: '•';
	position: absolute;
	left: 0;
	color: #e74c3c;
	font-size: 18px;
	line-height: 1.4;
}

.service-sub-list li strong {
	color: #2c3e50;
	font-weight: 600;
}

/*********************************
4. Responsive Design
*********************************/

@media (max-width: 992px) {
	.main-content {
		padding-top: 60px;
		padding-bottom: 60px;
	}

	.section-heading {
		font-size: 24px;
		margin-bottom: 30px;
	}

	.service-block {
		padding: 25px;
	}

	.service-block-title {
		font-size: 18px;
	}

	.service-block p {
		font-size: 14px;
	}

	.service-sub-list li {
		font-size: 13px;
	}
}

@media (max-width: 768px) {
	.main-content .col-lg-5,
	.main-content .col-lg-7 {
		margin-bottom: 40px;
	}

	.section-heading {
		font-size: 22px;
		margin-bottom: 25px;
		text-align: center;
	}

	.service-block {
		padding: 20px;
		margin-bottom: 25px;
	}

	.service-block-title {
		font-size: 17px;
		text-align: center;
	}

	.service-block p {
		font-size: 14px;
		text-align: justify;
	}

	.service-sub-list li {
		font-size: 13px;
		padding-left: 18px;
	}
}

@media (max-width: 576px) {
	.main-content {
		padding-top: 40px;
		padding-bottom: 40px;
	}

	.section-heading {
		font-size: 20px;
		margin-bottom: 20px;
	}

	.service-block {
		padding: 18px;
		margin-bottom: 20px;
		border-left-width: 3px;
	}

	.service-block-title {
		font-size: 16px;
	}

	.service-block p {
		font-size: 13px;
		line-height: 1.6;
	}

	.service-sub-list li {
		font-size: 12px;
		line-height: 1.6;
		margin-bottom: 10px;
	}
}
