
.tuition-content {
	display: flex;
	flex-direction: column;
	align-items: center;
	padding: 20px;
}

.tuition-section {
	width: 100%;
	max-width: 800px;
	margin-bottom: 40px;
	margin: auto;
	text-wrap: pretty;
	font-size: 18px;
}

.tuition-section h2,
.tuition-flex-box h2 {
	font-size: 24px;
	margin-bottom: 10px;
	text-align: center;
}

.tuition-section p,
.tuition-flex-box p {
	margin-bottom: 20px;
}

.tuition-flex-container {
	display: flex;
	align-items: center;
	gap: 24px;
	max-width: 800px;
}

.tuition-flex-box {
	flex: 1;
	margin-bottom: 40px;
}

@media (max-width: 800px) {
	.tuition-flex-container {
		flex-direction: column;
		gap: 20px;
		width: 100%;
		justify-content: center;
	}

	.tuition-flex-container img {
		order: 2;
	}
}

hr {
	width: min(900px, 100%);
	margin: 24px 0 16px;
	background-image: url(water.jpg);
	height: 8px;
	border: 0;
	border-radius: 4px;
}