.lhw-container {
	max_width: 1200px;
	margin: 0 auto;
	padding: 20px;
	position: relative;
}

.lhw-header {
	margin-bottom: 50px;
	max-width: 800px;
	margin-left: auto;
	margin-right: auto;
}

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

.lhw-title {
	font-size: 36px;
	font-weight: 700;
	line-height: 1.2;
	margin-bottom: 20px;
}

.lhw-desc {
	font-size: 18px;
	line-height: 1.6;
}

.lhw-cards-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 30px;
	margin-bottom: 50px;
}

.lhw-card {
	background: #fff;
	border-radius: 12px;
	padding: 30px;
	text-align: center;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	height: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.lhw-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.lhw-card-icon {
	font-size: 40px;
	margin-bottom: 20px;
	height: 60px;
	width: 60px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.lhw-card-title {
	font-size: 20px;
	font-weight: 600;
	margin-bottom: 15px;
	color: inherit;
}

.lhw-card-desc {
	font-size: 15px;
	color: #666;
	line-height: 1.5;
}

.lhw-footer {
	margin-top: 40px;
}

.lhw-btn {
	display: inline-block;
	text-decoration: none;
	font-weight: 600;
	transition: all 0.3s ease;
	text-transform: uppercase;
	letter-spacing: 1px;
	font-size: 14px;
}

@media (max-width: 768px) {
	.lhw-title {
		font-size: 28px;
	}
	
	.lhw-cards-grid {
		grid-template-columns: 1fr;
	}
}
