.pf-container-98c058fe {
	width: 100%;
	overflow-x: auto;
	padding: 20px 0;
}

.pf-timeline-98c058fe {
	display: flex;
	flex-direction: row;
	position: relative;
	min-width: 600px; /* Ensures scrolling on small devices */
	justify-content: space-between;
}

/* Connecting line */
.pf-timeline-98c058fe::before {
	content: '';
	position: absolute;
	top: 35px; /* Adjust based on icon size */
	left: 5%;
	right: 5%;
	height: 2px;
	background-color: #e0e0e0;
	z-index: 1;
}

.pf-step-98c058fe {
	flex: 1;
	text-align: center;
	position: relative;
	padding: 0 15px;
	z-index: 2;
}

.pf-icon-wrapper-98c058fe {
	display: flex;
	justify-content: center;
	margin-bottom: 20px;
}

.pf-icon-98c058fe {
	width: 70px;
	height: 70px;
	background-color: #ffffff;
	border: 2px solid #e0e0e0;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	z-index: 3;
}

.pf-icon-98c058fe i {
	font-size: 24px;
	color: #333333;
}

.pf-icon-98c058fe svg {
	width: 24px;
	height: 24px;
	fill: #333333;
}

.pf-title-98c058fe {
	font-size: 18px;
	margin-bottom: 10px;
	font-weight: 600;
	color: #111111;
}

.pf-desc-98c058fe {
	font-size: 14px;
	color: #666666;
	line-height: 1.5;
}

/* Mobile responsivness fallback */
@media (max-width: 767px) {
	.pf-timeline-98c058fe {
		flex-direction: column;
		min-width: unset;
	}
	.pf-timeline-98c058fe::before {
		top: 0;
		bottom: 0;
		left: 35px;
		right: auto;
		width: 2px;
		height: 100%;
	}
	.pf-step-98c058fe {
		display: flex;
		text-align: left;
		margin-bottom: 30px;
		padding: 0;
	}
	.pf-icon-wrapper-98c058fe {
		margin-bottom: 0;
		margin-right: 20px;
	}
}