.cooperation-scheme {
	max-width: 1100px;
	margin: 0 auto;
	margin-bottom: 50px;
}

.scheme-title {
	text-align: center;
	margin: 50px 0px;
	font-size: 2rem;
	color: #424242;
}

.scheme-steps {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 20px;
}

.scheme-step {
	flex: 1;
	min-width: 200px;
	display: flex;
	flex-direction: column;
}

.step-image {
	margin-bottom: 25px;
	display: flex;
	justify-content: center;
	align-items: center;
}


.step-text p {
	margin: 0;
	font-size: 1rem;
	line-height: 1.4;

}
@media (max-width: 890px) {
	.scheme-step {
		text-align: center;
	}
}
/* Мобильная версия */
@media (max-width: 767px) {
	.scheme-steps {
		flex-direction: column;
		gap: 30px;
	}

	.scheme-step {
		width: 100%;
		text-align: center;
	}

	.step-text p {
		font-size: 16px !important;
	}

	.scheme-title {
		font-size: 1.5rem;
		margin-top: 10px;
		margin-bottom: 30px;
	}

	.cooperation-scheme {
		margin-bottom: 70px;
	}
}