.hero-section {
	padding: 60px 20px;
}

.hero-container {
	display: flex;
	align-items: center;
 /* 垂直居中 */
	justify-content: space-between;
 /* 左右分布
                */
	max-width: 1200px;
	margin: 0 auto;
	gap: 40px;
 /* 左右间距 */
	flex-wrap: wrap;
 /* 为移动端准备 */
}

.hero-content {
	flex: 1;
 /* 左侧文字占据一半 */
}

.hero-content
                h1 {
	font-size: 2.5rem;
	margin-bottom: 20px;
}

.hero-content p {
	font-size: 1.1rem;
	margin-bottom: 20px;
	line-height: 1.6;
}

.download-buttons {
	display: flex;
	gap: 15px;
}

.download-btn {
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 10px 18px;
	border-radius: 6px;
	text-decoration: none;
	background: #007bff;
	color: #fff;
	font-weight: 500;
	transition: 0.3s;
}

.download-btn.secondary {
	background: #28a745;
}

.download-btn:hover {
	opacity: 0.9;
}

.hero-image {
	flex: 1;
 /* 右侧图片占据一半 */
	display: flex;
	justify-content: center;
}

.hero-image img {
	max-width: 100%;
	height: auto;
} /* 移动端响应式
                */@media (max-width: 768px) {
	.hero-container {
		flex-direction: column;
                /* 改为上下排列 */
		align-items: center;
 /* 居中对齐 */
		text-align: center;
	}

	.hero-content {
		margin-bottom: 20px;
	}

	.download-buttons {
		justify-content: center;
	}
}