#services {
	margin-bottom: 100px;
}

.content {
	max-width: 1200px;
	margin: 80px auto;
	padding: 0 20px;
}

.content h1 {
	margin-bottom: 40px;
}

.cardGrid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 20px 30px;
	margin-top: 40px;
	margin-bottom: 60px;
}

.card {
	cursor: pointer;
	border-radius: 12px;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	background: #fff;
}

.card:hover {
	transform: translateY(-5px);
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.card img {
	width: 100%;
	height: auto;
	border-radius: 12px;
	transition: 0.3s;
	box-shadow: 0 4px 30px #00000023;
}

.cardHeader {
	padding-left: 20px;
	padding-right: 20px;
}

.card h3 {
	margin-bottom: 5px;
}

.card .cardHeader p {
	max-width: 200px;
}

.homeMission {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
	gap: 40px;
}

.homeMission p {
	flex: 1;
	min-width: 300px;
	font-size: 1.1rem;
	line-height: 1.6;
}

.homeMissionImg {
	padding: 60px 40px;
	border-radius: 10px;
	box-shadow: 0 4px 30px #00000023;
}

.homeMissionImg img {
	height: 100px;
}