.step-item {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	position: relative;
}

/* Обертка иконки */
.step-icon-wrapper {
	width: 80px;
	height: 80px;
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
	z-index: 1; /* Иконки поверх линии */
	flex-shrink: 0; /* Предотвращаем сжатие обертки */
}

/* Стили для SVG иконки внутри обертки */
.step-icon {
	width: 42px;
	height: 42px;
	object-fit: contain;
}

/* Номер шага */
.step-number {
	position: absolute;
	bottom: -10px; /* Изменено */
	left: -10px;  /* Изменено */
	background-color: #fff; /* Изменено */
	color: black; /* Изменено */
	border-radius: 50%;
	width: 30px;
	height: 30px;
	text-align: center; /* Добавлено */
	font-weight: bold;
	border: 2px solid #7E7E7E; /* Изменено */
}

/* Контент шага */
.step-content .title {
	margin-bottom: 10px;
}

.step-content p {
	color: #7f8c8d;
	font-size: 0.95em;
	line-height: 1.5;
}