.pt-wrapper-bfaddbba {
	text-align: center;
	padding: 20px 0;
	font-family: inherit;
}

.pt-header-bfaddbba {
	margin-bottom: 60px;
}

.pt-main-title-bfaddbba {
	font-size: 32px;
	color: #0c1f38;
	margin: 0;
	font-weight: 600;
}

.pt-divider-bfaddbba {
	width: 40px;
	height: 3px;
	background: #fca5a5;
	margin: 15px auto 0;
}

.pt-timeline-container-bfaddbba {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	position: relative;
}

.pt-timeline-container-bfaddbba::before {
	content: '';
	position: absolute;
	top: 40px; /* Centered with the 80px icons */
	left: 10%;
	right: 10%;
	height: 2px;
	background: #e2e8f0;
	z-index: 0;
}

.pt-step-bfaddbba {
	flex: 1;
	position: relative;
	z-index: 1;
	padding: 0 15px;
}

.pt-icon-wrapper-bfaddbba {
	width: 80px;
	height: 80px;
	background: #0f172a; /* Dark Blue */
	border-radius: 50%;
	margin: 0 auto 25px;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	color: #ffffff;
	font-size: 32px;
}

.pt-icon-wrapper-bfaddbba svg {
	width: 36px;
	height: 36px;
	fill: currentColor;
}

.pt-step-number-bfaddbba {
	position: absolute;
	bottom: -10px;
	left: 50%;
	transform: translateX(-50%);
	width: 24px;
	height: 24px;
	background: #fca5a5; /* Pink/Salmon */
	color: #ffffff;
	border-radius: 50%;
	font-size: 12px;
	font-weight: bold;
	display: flex;
	align-items: center;
	justify-content: center;
	border: 2px solid #ffffff;
	line-height: 1;
}

.pt-step-title-bfaddbba {
	font-size: 14px;
	font-weight: 700;
	color: #0f172a;
	margin-bottom: 10px;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.pt-step-desc-bfaddbba {
	font-size: 13px;
	color: #475569;
	line-height: 1.6;
}

.pt-connector-dot-bfaddbba {
	position: absolute;
	top: 36px;
	right: -5px;
	width: 10px;
	height: 10px;
	background: #e2e8f0;
	border-radius: 50%;
	z-index: 2;
}

/* Hide dot for last item via structural pseudo in flex, or via PHP loop logic (done in PHP) */

/* Responsive Design */
@media (max-width: 991px) {
	.pt-step-title-bfaddbba {
		font-size: 12px;
	}
	.pt-step-desc-bfaddbba {
		font-size: 11px;
	}
	.pt-connector-dot-bfaddbba {
		display: none; /* Hide intermediate dots on smaller screens */
	}
}

@media (max-width: 767px) {
	.pt-timeline-container-bfaddbba {
		flex-direction: column;
		align-items: center;
	}
	
	.pt-timeline-container-bfaddbba::before {
		top: 0;
		bottom: 0;
		left: 50%;
		width: 2px;
		height: auto;
		right: auto;
		transform: translateX(-50%);
	}
	
	.pt-step-bfaddbba {
		width: 100%;
		max-width: 320px;
		margin-bottom: 40px;
	}
	
	.pt-step-bfaddbba:last-child {
		margin-bottom: 0;
	}
	
	.pt-connector-dot-bfaddbba {
		display: none;
	}
}