.process-timeline-wrapper-fc31fbdf {
	width: 100%;
	padding: 20px 0;
	overflow-x: auto;
}

.process-timeline-fc31fbdf {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: flex-start;
	position: relative;
	min-width: 600px;
}

/* Connecting Line */
.process-timeline-fc31fbdf::before {
	content: '';
	position: absolute;
	top: 30px; /* Aligns with middle of icon */
	left: 5%;
	right: 5%;
	height: 3px;
	background-color: #e0e0e0;
	z-index: 1;
}

.pt-step-fc31fbdf {
	flex: 1;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	padding: 0 15px;
	position: relative;
	z-index: 2;
}

.pt-step-icon-wrapper-fc31fbdf {
	margin-bottom: 20px;
	background-color: #fff; /* to cover the line underneath */
	padding: 0 10px;
}

.pt-step-icon-fc31fbdf {
	width: 60px;
	height: 60px;
	background-color: #f5f5f5;
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	box-shadow: 0 4px 10px rgba(0,0,0,0.1);
	transition: transform 0.3s ease;
}

.pt-step-fc31fbdf:hover .pt-step-icon-fc31fbdf {
	transform: scale(1.1);
}

.pt-step-icon-fc31fbdf i {
	font-size: 24px;
	color: #333;
}

.pt-step-icon-fc31fbdf svg {
	width: 24px;
	height: 24px;
	fill: #333;
}

.pt-step-content-fc31fbdf {
	max-width: 200px;
}

.pt-step-title-fc31fbdf {
	margin: 0 0 10px 0;
	font-size: 18px;
	font-weight: 600;
	color: #1a1a1a;
}

.pt-step-desc-fc31fbdf {
	margin: 0;
	font-size: 14px;
	color: #666;
	line-height: 1.5;
}

/* Responsive */
@media (max-width: 768px) {
	.process-timeline-fc31fbdf {
		flex-direction: column;
		min-width: 100%;
		align-items: flex-start;
	}
	
	.process-timeline-fc31fbdf::before {
		top: 0;
		bottom: 0;
		left: 40px;
		right: auto;
		width: 3px;
		height: 100%;
	}
	
	.pt-step-fc31fbdf {
		flex-direction: row;
		text-align: left;
		padding: 20px 0;
		width: 100%;
	}
	
	.pt-step-icon-wrapper-fc31fbdf {
		margin-bottom: 0;
		margin-right: 20px;
		padding: 10px 0;
	}
	
	.pt-step-content-fc31fbdf {
		max-width: 100%;
		padding-top: 15px;
	}
}
