/* 助孕英雄区域 */
.hero-section {
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	color: #fff;
	padding: 80px 0;
	text-align: center;
}
.hero-section h1 {
	font-size: 48px;
	font-weight: bold;
	margin-bottom: 20px;
}
.hero-section p {
	font-size: 20px;
	opacity: 0.9;
	max-width: 800px;
	margin: 0 auto 30px;
}

/* 助孕服务卡片 */
.service-card {
	background: #fff;
	border-radius: 10px;
	box-shadow: 0 5px 15px rgba(0,0,0,0.1);
	padding: 30px;
	margin-bottom: 30px;
	transition: all 0.3s ease;
}
.service-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 15px 30px rgba(0,0,0,0.2);
}
.service-card i {
	font-size: 60px;
	color: #667eea;
	margin-bottom: 20px;
}
.service-card h4 {
	color: #333;
	margin-bottom: 15px;
	font-size: 24px;
}
.service-card p {
	color: #666;
	line-height: 1.6;
}
.service-card ul {
	list-style: none;
	padding: 0;
	margin-top: 15px;
}
.service-card ul li {
	padding: 8px 0;
	border-bottom: 1px solid #eee;
}
.service-card ul li:last-child {
	border-bottom: none;
}
.service-card ul li i {
	font-size: 16px;
	color: #28a745;
	margin-right: 10px;
}

/* 助孕CTA区域 */
.cta-section {
	background: #f8f9fa;
	padding: 60px 0;
	text-align: center;
}
.cta-section h3 {
	font-size: 36px;
	margin-bottom: 20px;
	color: #333;
}
.cta-section p {
	font-size: 18px;
	color: #666;
	margin-bottom: 30px;
}

/* 助孕流程图标 */
.cta-section .fas {
	font-size: 48px;
	color: #667eea;
	margin-bottom: 15px;
}
