/* 代母功能卡片 */
.feature-box {
	background: #f8f9fa;
	border-radius: 8px;
	padding: 25px;
	margin-bottom: 20px;
	transition: all 0.3s ease;
}
.feature-box:hover {
	background: #e9ecef;
	transform: translateY(-5px);
	box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}
.feature-box i {
	font-size: 48px;
	color: #007bff;
	margin-bottom: 15px;
}
.feature-box h4 {
	color: #333;
	margin-bottom: 15px;
}
.feature-box p {
	color: #666;
	line-height: 1.6;
}

/* 代母统计数据 */
.stats-section {
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	color: #fff;
	padding: 60px 0;
}
.stats-section .stat-item {
	text-align: center;
	padding: 20px;
}
.stats-section .stat-item h2 {
	font-size: 48px;
	font-weight: bold;
	margin-bottom: 10px;
}
.stats-section .stat-item p {
	font-size: 18px;
	opacity: 0.9;
}
