.hiw-container {
	max_width: 1200px;
	margin: 0 auto;
	padding: 20px;
}

.hiw-header {
	margin-bottom: 50px;
}

.hiw-eyebrow {
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 1.5px;
	margin-bottom: 10px;
	font-size: 14px;
}

.hiw-title {
	font-size: 32px;
	font-weight: 700;
	margin-bottom: 10px;
}

.hiw-steps-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 30px;
	position: relative;
}

/* Connecting line effect for larger screens */
@media (min-width: 992px) {
	.hiw-steps-grid::before {
		content: '';
		position: absolute;
		top: 40px;
		left: 15%;
		right: 15%;
		height: 2px;
		background: repeating-linear-gradient(to right, #ccc 0, #ccc 10px, transparent 10px, transparent 20px);
		z-index: 0;
	}
}

.hiw-step-card {
	background: #fff;
	padding: 30px 20px;
	border-radius: 12px;
	position: relative;
	z-index: 1;
	height: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	transition: transform 0.3s ease;
}

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

.hiw-step-number {
	width: 50px;
	height: 50px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 20px;
	font-weight: 700;
	margin-bottom: 20px;
	box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.hiw-step-title {
	font-size: 20px;
	font-weight: 600;
	margin-bottom: 15px;
	text-align: center;
}

.hiw-step-desc {
	font-size: 15px;
	line-height: 1.6;
	text-align: center;
	color: #666;
}

@media (max-width: 768px) {
	.hiw-title {
		font-size: 26px;
	}
	
	.hiw-steps-grid {
		grid-template-columns: 1fr;
		gap: 40px;
	}
	
	/* Hide connecting line on mobile */
	.hiw-steps-grid::before {
		display: none;
	}
}
