body {
	margin: 0;
	font-family: "Nunito", sans-serif;
	background-color: #27005e;
	color: white;
	line-height: 1.6;
}

/* Header */
header {
	display: flex;
	justify-content: center; /* center the smaller logo */
	align-items: center;
	padding: 1rem 2rem; /* slightly smaller vertical padding */
	background-color: #27005e;
}
.logo img {
	/* Adjust the desktop size slightly smaller than before */
	width: 400px;
	height: auto; /* maintain aspect ratio */
	object-fit: contain;
}

/* Hero Section */
.hero {
	text-align: center;
	padding: 1rem 2rem;
	max-width: 100%;
	margin: auto;
	background: url("images/hear_and_now_hero_BG.png") no-repeat center
		center/cover;
	background-size: cover;
	color: white;
	position: relative;
}
.hero::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: #27005eb3;
	z-index: 1;
}
.hero .hero-cta {
	position: relative;
	z-index: 2;
	margin-bottom: 2rem;
}
.hero .hero-cta a {
	background: #00ffdd;
	color: #27005e;
	padding: 0.75rem 1.25rem;
	margin: 0 0.5rem;
	border-radius: 8px;
	font-weight: 700;
	text-decoration: none;
	white-space: nowrap;
	display: inline-block;
}
.hero h1,
.hero p {
	position: relative;
	z-index: 2;
}
.hero h1 {
	font-size: 2.5rem;
	margin-bottom: 1rem;
}

/* Features & Employer Sections */
.features,
.employer-section {
	background: white;
	color: #27005e;
	padding: 2rem 2rem;
	text-align: center;
}
.features h2,
.employer-section h2 {
	color: #009b99;
	margin-bottom: 2rem;
}
.feature-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 2rem;
	max-width: 1000px;
	margin: auto;
}
.feature-box {
	background: #f7f8fa;
	padding: 2rem;
	border-radius: 10px;
}
.feature-icon {
	width: 80px;
	margin-bottom: 1rem;
}

/* Footer */
footer {
	text-align: center;
	padding: 2rem;
	background: #27005eb3;
	position: relative;
}
.footer-logo {
	margin-bottom: 1rem;
}
.footer-logo img {
	height: 40px;
}
.footer-link {
	color: #00ffdd;
	text-decoration: none;
	font-weight: 600;
}
.footer-link:hover {
	text-decoration: underline;
}
.policy-container {
	max-width: 800px;
	margin: 2rem auto;
	padding: 2rem;
	background: white;
	color: #27005e;
	border-radius: 10px;
}
.policy-container h1 {
	color: #009b99;
	margin-bottom: 1rem;
}
.policy-container h2 {
	margin-top: 2rem;
	color: #27005e;
}
.policy-container p {
	margin-bottom: 1rem;
}
.policy-container a {
	color: #00ffdd;
	text-decoration: none;
}
.policy-container a:hover {
	text-decoration: underline;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
	header {
		padding: 0.5rem 1rem;
	}
	.logo img {
		width: 250px;
	}
	.hero {
		padding: 2rem 1rem;
	}
	.hero h1 {
		font-size: 2rem;
	}
}
