html, body, div, span, p, a, del, em, img, ol, ul, li, fieldset, form, label {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font-family: "Inter", sans-serif;
	}
body, html {
  background-color: #f9f7f4;
  width: 100%;
  height: 100%;
}
.desktop { display: block; }
.mobile { display: none; }
.cleaner {
  clear: both;
  height: 0px;
  font-size: 1px;
  border: none;
  margin: 0;
  padding: 0;
  background: transparent;
  line-height: 1px;
  background-color: none;
}
a, a:active, a:hover {
	text-decoration: none;
}


/* TOP NAV */

.nav-bar {
	width: 100%;
	padding: 20px;
}

.nav {
	display: flex;
	align-items: center;
	width: 100%;
	max-width: 1400px;
	margin: 0 auto;
	padding: 0 20px;
	position: relative;
}

.logo {
	width: 160px;
	position: static;
}

.top-menu {
	display: flex;
	align-items: center;
	position: static; /* Changed from absolute */
	margin-left: auto;
	right: auto;
}

.top-menu-items {
	display: flex;
	list-style: none;
	margin: 0;
	padding: 0;
	align-items: center;
}

.top-menu-item {
	color: #000;
	text-decoration: none;
	font-size: 14px;
	line-height: 14px;
	font-weight: 500;
	padding: 7px 15px;
	border-radius: 9999px;
	background-color: rgba(255,255,255,0);
	transition: background-color 0.2s;
	margin: 0 5px;
}

.top-menu-item:hover {
	color: #3C6797;
	background-color: #fff;
}

.solutions-nav {
	margin-left: 30px;
}

.solutions-nav ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.solutions-dropdown {
	position: relative;
}

.dropdown-trigger {
	display: flex;
	align-items: center;
	cursor: pointer;
	padding: 10px 20px;
	border-radius: 50px;
	background-color: rgba(255,255,255,1);
	transition: all 0.3s ease;
	text-decoration: none;
	color: #000;
	font-size: 14px;
	font-weight: 500;
	z-index: 101;
}

.dropdown-trigger:hover {
	color: #3C6797;
	background-color: #fff;
}

.dropdown-trigger i {
	margin-left: 5px;
	transition: transform 0.3s ease;
}

.dropdown-content {
	position: absolute;
	top: 0;
	left: 0;
	border: 2px solid #fff;
	border-radius: 20px;
	overflow: visible;
	opacity: 0;
	visibility: hidden;
	transform: scale(0.95);
	transform-origin: top left;
	transition: all 0.3s ease;
	z-index: 100;
	min-width: 220px;
	padding: 40px 0 10px 0;
	display: block;
	-webkit-box-shadow: none !important;
	box-shadow: none !important;
}

.dropdown-content a {
	color: #333;
	padding: 8px 18px; /* Reduced padding */
	display: block;
	font-size: 14px;
	text-decoration: none;
	transition: background-color 0.2s;
}

.solutions-dropdown:hover .dropdown-trigger {
	background-color: #fff;
	color: #3C6797;
}

.solutions-dropdown:hover .dropdown-trigger i {
	transform: rotate(180deg);
}

.solutions-dropdown:hover .dropdown-content {
	opacity: 1;
	visibility: visible;
	transform: scale(1);
}

.dropdown-content a:hover {
	background-color: #f5f5f5;
	color: #3C6797;
}

.cta-button {
	background-color: #111;
	margin-left: 15px;
	padding: 0;
	font-size: 14px;
	line-height: 14px;
	border-radius: 9999px;
	font-weight: 500;
	transition: background-color 0.2s;
}

.cta-button:hover {
	background-color: #3C6797;
}

.cta-button a {
	color: white;
	padding: 7px 15px;
	display: block;
}

/* ============ 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) {
	.nav {
		flex-wrap: wrap;
		justify-content: space-between;
	}
	
	.logo {
		width: 140px;
	}
	
	.solutions-nav {
		order: 2;
		margin-left: 0;
	}
	
	.top-menu {
		width: 100%;
		order: 3;
		margin-top: 15px;
		justify-content: center;
	}
	
	.top-menu-items {
		flex-wrap: wrap;
		justify-content: center;
	}
	
	.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;
	}
}
