.hiw-wrapper-d483a88e {
	padding: 60px 20px;
	max-width: 1200px;
	margin: 0 auto;
	font-family: inherit;
}

.hiw-title-d483a88e {
	text-align: center;
	color: #0b1a2e; /* Target Avenue Dark Navy */
	font-size: 36px;
	font-weight: 700;
	margin-bottom: 60px;
	margin-top: 0;
}

.hiw-timeline-container-d483a88e {
	position: relative;
}

.hiw-timeline-line-d483a88e {
	position: absolute;
	top: 15px; /* Aligns with the middle of the dots */
	left: 0;
	width: 100%;
	height: 2px;
	background-color: #e2e8f0; /* Subtle line color */
	z-index: 1;
}

.hiw-steps-grid-d483a88e {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 30px;
	position: relative;
	z-index: 2;
}

.hiw-step-item-d483a88e {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	transition: transform 0.3s ease;
}

.hiw-step-item-d483a88e:hover {
	transform: translateY(-5px);
}

.hiw-step-dot-d483a88e {
	width: 32px;
	height: 32px;
	background-color: #ffffff;
	border: 4px solid #63b3ed; /* Light blue by default */
	border-radius: 50%;
	margin-bottom: 24px;
	box-shadow: 0 0 0 4px #ffffff; /* Space around dot */
	transition: background-color 0.3s ease;
}

.hiw-step-item-d483a88e:hover .hiw-step-dot-d483a88e {
	background-color: #63b3ed;
}

.hiw-step-number-d483a88e {
	color: #63b3ed;
	font-size: 14px;
	font-weight: 700;
	letter-spacing: 1px;
	text-transform: uppercase;
	margin-bottom: 12px;
}

.hiw-step-title-d483a88e {
	color: #0b1a2e; /* Target Avenue Dark Navy */
	font-size: 18px;
	font-weight: 700;
	margin: 0;
	line-height: 1.4;
}

.hiw-step-description-d483a88e {
	color: #4a5568;
	font-size: 14px;
	line-height: 1.6;
	margin: 12px 0 0;
}

/* Responsive Styles */
@media (max-width: 991px) {
	.hiw-steps-grid-d483a88e {
		grid-template-columns: repeat(2, 1fr);
		gap: 40px 30px;
	}
	
	.hiw-timeline-line-d483a88e {
		display: none; /* Hide horizontal line on mobile/tablet wrap */
	}
}

@media (max-width: 767px) {
	.hiw-steps-grid-d483a88e {
		grid-template-columns: 1fr;
		gap: 30px;
	}
	
	.hiw-wrapper-d483a88e {
		padding: 40px 15px;
	}
	
	.hiw-title-d483a88e {
		font-size: 28px;
		margin-bottom: 40px;
	}
}
