/* ============ Hero Section ============ */
.hero {
	margin: 0 10%;
	display: flex;
	align-items: stretch;
	position: relative;
	max-height: 700px;
}

.hero-text {
	width: 50%;
	text-align: left;
	padding-right: 30px;
	margin: 5% 0;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.hero h3 {
	font: 16px 'Archivo', sans-serif;
	line-height: 16px;
	font-weight: 500;
	text-transform: uppercase;
	color: #333;
	letter-spacing: 1px;
	margin-bottom: 15px;
}

.hero h1 {
	font: 60px 'Archivo', sans-serif;
	line-height: 1;
	color: #000;
	font-weight: 500;
	margin: 0 0 25px;
	letter-spacing: -1px;
}

.hero h2 {
	font: 24px 'Archivo', sans-serif;
	line-height: 1.4;
	font-weight: 400;
	color: #333;
	margin-bottom: 10px;
}

.hero h2:last-of-type {
	margin-bottom: 40px;
}

.hero h2 strong {
	font-weight: 600;
	color: #000;
}

.hero-cta {
	margin-top: 30px;
}

.button-demo {
	display: inline-block;
	background-color: #fff;
	color: #38002A;
	font: 30px 'Archivo', sans-serif;
	font-weight: 700;
	padding: 12px 50px;
	border: 4px solid #38002A;
	border-radius: 50px;
	transition: all 0.3s ease;
}

.button-demo:hover {
	background-color: #38002A;
	color: #fff;
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(56, 0, 42, 0.2);
}

.demo-note {
	font-size: 14px;
	color: #666;
	margin-top: 10px;
	letter-spacing: -0.5px;
	font-weight: 600;
}

.hero-programs {
	width: 50%;
}

/* ============ Responsive Adjustments ============ */
@media (max-width: 1024px) {
	.hero h1 {
		font-size: 48px;
	}
	
	.hero h2 {
		font-size: 20px;
	}
}

@media (max-width: 768px) {
	
	
	.solutions-nav {
		order: 2;
		margin-left: 0;
	}
	
	
	
	.hero {
		flex-direction: column;
		margin: 30px 5% 50px;
	}
	
	.hero-text, .hero-programs {
		width: 100%;
	}
	
	.hero-text {
		margin-bottom: 40px;
		padding-right: 0;
	}
	
	.hero h1 {
		font-size: 40px;
	}
}
