.services
{
	margin: 0 auto;
	/*padding: 1rem 0;*/
	display: block;
	clear: both; /* 清除浮动影响 */
	width: 985px; /* 确保宽度 */
	max-width: 100%; /* 确保最大宽度 */
	box-sizing: border-box; /* 包含padding和border在内 */
}

.services-container
{
	max-width: 985px;
	margin: 0 auto;
	padding: 0;
}

.services-grid
{
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 2rem;
	margin-top: 1rem;
}

.service-card
{
	/*background: linear-gradient(to bottom, #c6d9f8 0%, #FFFFFF 100%);*/
	background: linear-gradient(to bottom, #dde8fa 0%, #FFFFFF 100%);
	/*background: white;*/
	padding: 2rem;
	border-radius: 10px;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
	text-align: center;
	transition: transform 0.3s;
	min-width: 300px;
}

.section-title
{
	text-align: center;
	font-size: 2.5rem;
	color: #2c3e50;
}


.service-card:hover
{
	transform: translateY(-10px);
}

.service-icon
{
	font-size: 3rem;
	color: #3498db;
	margin-bottom: 1rem;
}

.service-title
{
	font-size: 1.5rem;
	margin-bottom: 1rem;
	color: #2c3e50;
}
