.panel-step-process {
	background: #ffffff;
}

.panel-step-process .container {
	max-width: 1280px;
}

/* Header Section */
.step-process-header {
	text-align: center;
	margin-bottom: 48px;
}

.step-process-heading {
	
	font-size: 42px;
	font-weight: 600;
	line-height: 54px;
	letter-spacing: 1px;
	color: #252c32;
	margin-bottom: 24px;
}

.step-process-description {
	max-width: 980px;
	margin: 0 auto;
}

.step-process-description p {
	
	font-size: 22px;
	font-weight: 400;
	line-height: 32px;
	letter-spacing: 1px;
	color: #6b7280;
	margin: 0;
}

/* Content Row */
.step-process-content-row {
	align-items: flex-start;
}

/* Image */
.step-process-image-wrapper {
	margin-bottom: 30px;
}

.step-process-image {
	width: 100%;
	height: auto;
	border-radius: 10px;
	object-fit: cover;
	display: block;
}

/* Steps Container */
.step-process-steps {
	display: flex;
	flex-direction: column;
}

/* Individual Step */
.step-process-step {
	display: flex;
	gap: 16px;
	position: relative;
}

.step-process-step:not(.is-last) {
	margin-bottom: 0;
}

/* Step Indicator Wrapper */
.step-indicator-wrapper {
	display: flex;
	flex-direction: column;
	align-items: center;
	flex-shrink: 0;
}

/* Step Indicator Circle */
.step-indicator {
	width: 26px;
	height: 26px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	position: relative;
	z-index: 2;
}

/* Default step (numbered) */
.step-process-step .step-indicator {
	background: #ffffff;
	border: 1px solid #b0babf;
	transition:all 0.5s;
}

.step-process-step .step-number {
	font-size: 12px;
	font-weight: 400;
	line-height: 16px;
	color: #b0babf;
}

.step-process-step.is-active .step-number {
	display:none;
}
.step-process-step:not(.is-active) svg {
	display:none;
}

/* Active step (with checkmark) */
.step-process-step.is-active .step-indicator {
	background: #080808;
	border: none;
}

/* First step with description gets more spacing */
.step-process-step.is-active .step-content {
	padding-bottom: 20px;
}

/* Connector Line */
.step-connector {
	width: 2px;
	height: 40px;
	background: #e5e7eb;
	margin-top: 0;
	flex-shrink: 0;
	transition:all 0.5s;
}

.step-process-step.is-active .step-connector {
	background: #080808;
	height: 61px;
}

/* Step Content */
.step-content {
	flex: 1;
	padding-top: 2px;
}

.step-title {
	
	font-size: 18px;
	font-weight: 600;
	line-height: 18px;
	letter-spacing: 0.54px;
	color: #252c32;
	margin: 0 0 8px 0;
}

.step-process-step:not(.is-active) .step-title {
	font-size: 16px;
	line-height: 18px;
	letter-spacing: 0.64px;
	margin: 0;
}

.step-description {
	font-size: 16px;
	font-weight: 400;
	line-height: 18px;
	letter-spacing: 0.48px;
	color: #6b7280;
	margin: 0;
	transition:all 0.5s;
}

@media (min-width:600px) {

	.step-description {
		max-height:0;
		overflow:hidden;
	}
	.step-process-step.is-active .step-description {
		max-height:30px;
	}

}

@media (max-width:600px) {
	
	.step-process-step:not(.is-active) .step-description {
		display:none;
	}
	
}


/* Spacing adjustments */
.step-process-step:not(.is-active) .step-content {
	padding-bottom: 16px;
}

/* Responsive adjustments */
@media (max-width: 991px) {
	.step-process-heading {
		font-size: 36px;
		line-height: 46px;
		margin-bottom: 20px;
	}
	
	.step-process-description p {
		font-size: 20px;
		line-height: 30px;
	}
	
	.step-process-header {
		margin-bottom: 40px;
	}
	
}

@media (max-width: 767px) {
	.step-process-heading {
		font-size: 32px;
		line-height: 40px;
		margin-bottom: 18px;
	}
	
	.step-process-description p {
		font-size: 18px;
		line-height: 28px;
	}
	
	.step-process-header {
		margin-bottom: 32px;
	}
	
	.step-process-content-row {
		flex-direction: column;
	}
	
	.step-process-image-wrapper {
		margin-bottom: 40px;
	}
	
	.step-title {
		font-size: 16px;
	}
	
	.step-description {
		font-size: 15px;
		line-height: 20px;
	}
}

