.service-hero {
	background-color: #e9ecef;
	padding: 80px 20px;
	text-align: center;
}

.service-hero h1 {
	font-size: 36px;
	margin-bottom: 20px;
	color: rgb(109, 131, 113);
}

.service-hero p {
	font-size: 18px;
	color: #555;
}

.service-content {
	padding: 40px 20px;
}

.image-description-container {
	display: flex;
	flex-wrap: wrap;
	margin-bottom: 30px;
	align-items: center;
}

.image-wrapper {
	flex: 1 1 300px;
	margin-right: 20px;
	margin-bottom: 20px;
}

.image-wrapper img {
	width: 100%;
	height: auto;
	border-radius: 8px;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.description {
	flex: 1 1 400px;
}

.description h3 {
	font-size: 24px;
	color: rgb(109, 131, 113);
	margin-bottom: 10px;
}

.description p {
	font-size: 16px;
	color: #555;
	margin-bottom: 15px;
}

.reversed {
	flex-direction: row-reverse;
}

.reversed .image-wrapper {
	margin-left: 20px;
	margin-right: 0;
}

@media (max-width: 768px) {
	.image-description-container {
		flex-direction: column;
	}

	.image-wrapper {
		margin-right: 0;
		margin-bottom: 20px;
	}

	.reversed .image-wrapper {
		margin-left: 0;
	}
}