.solar-hw-wrapper {
	text-align: center;
	font-family: inherit;
}

.solar-hw-main-title {
	margin-bottom: 50px;
	color: #0B2545;
	font-size: 32px;
	font-weight: 700;
}

.solar-hw-steps-container {
	display: flex;
	flex-direction: column;
	gap: 30px;
	align-items: center;
}

@media (min-width: 1024px) {
	.solar-hw-steps-container {
		flex-direction: row;
		align-items: flex-start;
		justify-content: space-between;
	}
}

.solar-hw-step-card {
	position: relative;
	background: #ffffff;
	border-radius: 12px;
	padding: 40px 20px 30px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	flex: 1;
	max-width: 320px;
	width: 100%;
}

@media (min-width: 1024px) {
	.solar-hw-step-card {
		max-width: none;
	}
}

.solar-hw-step-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.solar-hw-badge {
	position: absolute;
	top: -15px;
	left: 50%;
	transform: translateX(-50%);
	background-color: #2ECC71;
	color: #fff;
	padding: 5px 15px;
	border-radius: 20px;
	font-size: 12px;
	font-weight: 600;
	white-space: nowrap;
	box-shadow: 0 4px 10px rgba(46, 204, 113, 0.3);
}

.solar-hw-number {
	position: absolute;
	top: 15px;
	left: 15px;
	width: 30px;
	height: 30px;
	background-color: #2ECC71;
	color: #fff;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: bold;
	font-size: 14px;
}

.solar-hw-image-wrap {
	height: 120px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 20px;
}

.solar-hw-image-wrap img {
	max-height: 100%;
	max-width: 100%;
	object-fit: contain;
}

.solar-hw-step-title {
	font-size: 20px;
	font-weight: 700;
	color: #0B2545;
	margin-bottom: 15px;
}

.solar-hw-step-desc {
	font-size: 15px;
	line-height: 1.6;
	color: #555;
	margin: 0;
}

.solar-hw-arrow {
	display: none;
	color: #2ECC71;
	margin-top: 80px;
}

@media (min-width: 1024px) {
	.solar-hw-arrow {
		display: block;
		flex-shrink: 0;
		width: 40px;
	}
}
