.process-flow {
}

.process-flow__steps {
	display: flex;
	align-items: flex-start;
	max-width: 100%;
	margin: 0 auto;
	gap: 48px;
	position: relative;
}

.process-flow__step {
	flex: 1;
	text-align: center;
	position: relative;
}

.process-flow__step:not(:last-child)::before {
	content: '';
	position: absolute;
	top: 60px;
	left: 50%;
	width: calc(100% + 40px);
	height: 2px;
	background: #E2E8F0;
	z-index: 0;
}

.process-flow__icon-wrapper {
	position: relative;
	display: inline-block;
	margin-bottom: 20px;
}

.process-flow__icon {
	width: 120px;
	height: 120px;
	border: 4px solid #EDF2F7;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 32px;
	background-color: #fff;
	color: #0057DA;
	transition: border-color 0.3s ease;
	box-shadow: 0px 4px 6px -4px #0000001A;
	box-shadow: 0px 10px 15px -3px #0000001A;
}

.process-flow__step .process-flow__icon:hover {
	border-color: #0057DA;
	box-shadow: 0px 4px 6px -4px #0057DA1A;
	box-shadow: 0px 10px 15px -3px #0057DA1A;
}

.process-flow__number {
	position: absolute;
	top: -5px;
	right: -5px;
	width: 32px;
	height: 32px;
	background: #1a365d;
	color: #fff;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 14px;
	font-weight: bold;
}

.process-flow__step .process-flow__title {
	font-size: 20px;
	font-weight: 600;
	color: #033050;
	margin: 0 0 12px 0;
}

.process-flow__description {
	font-size: 16px;
	color: #4A5565;
	line-height: 1.4;
	margin: 0;
}


/* Mobile Styles */
@media (max-width: 768px) {
	.process-flow__steps {
		flex-direction: column;
		gap: 0;
	}

	.process-flow__step {
		display: flex;
		align-items: flex-start;
		text-align: left;
		gap: 36px;
		padding-bottom: 40px;
	}

	.process-flow__step:not(:last-child)::before {
		top: 80px;
		left: 36px;
		width: 2px;
		height: calc(100% - 60px);
		background: #E2E8F0;
	}

	.process-flow__icon-wrapper {
		margin-bottom: 0;
		flex-shrink: 0;
		padding-top: 8px;
	}

	.process-flow__icon {
		width: 72px;
		height: 72px;
		border-width: 2px;
	}

	.process-flow__number {
		width: 20px;
		height: 20px;
		font-size: 12px;
		top: 4px;
		right: -2px;
	}

	.process-flow__icon svg {
		width: 24px;
		height: 24px;
	}

	.process-flow__step .process-flow__title {
		margin-bottom: 7px;
	}

	.process-flow__content {
		flex: 1;
	}

	.process-flow__step .process-flow__title {
		text-align: left;
	}

	.process-flow__description {
		text-align: left;
	}

}
