/* General Reset & Styles */
:root {
	--primary: #2563eb;
	--primary-dark: #1d4ed8;
	--secondary: #0891b2;
	--text-main: #1f2937;
	--text-light: #6b7280;
	--bg-light: #f9fafb;
	--white: #ffffff;
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
	line-height: 1.6;
	color: var(--text-main);
	background-color: var(--bg-light);
	scroll-behavior: smooth;
}

.container {
	max-width: 1100px;
	margin: 0 auto;
	padding: 0 20px;
}

/* Header & CSS-Only Mobile Menu */
header {
	background: var(--white);
	box-shadow: 0 2px 4px rgba(0,0,0,0.1);
	position: fixed;
	width: 100%;
	top: 0;
	z-index: 1000;
}

.nav-wrapper {
	display: flex;
	justify-content: space-between;
	align-items: center;
	height: 70px;
}

.logo {
	font-size: 1.5rem;
	font-weight: 700;
	color: var(--primary);
	text-decoration: none;
}

/* Checkbox Hack for Menu */
#menu-toggle {
	display: none;
}

.menu-button {
	display: none;
	cursor: pointer;
	padding: 10px;
}

.menu-button span {
	display: block;
	width: 25px;
	height: 3px;
	background: var(--text-main);
	margin: 5px 0;
	transition: 0.3s;
}

nav ul {
	display: flex;
	list-style: none;
}

nav ul li {
	margin-left: 30px;
}

nav ul li a {
	text-decoration: none;
	color: var(--text-main);
	font-weight: 500;
	transition: color 0.3s;
}

nav ul li a:hover {
	color: var(--primary);
}

/* Hero Section */
.hero {
	height: 60vh;
	background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('../img-241/hed.jpg') no-repeat center center/cover;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	color: var(--white);
	margin-top: 70px;
}

.hero h1 {
	font-size: 3rem;
	margin-bottom: 20px;
}

.hero p {
	font-size: 1.25rem;
	max-width: 700px;
	margin: 0 auto;
}

/* Content Sections */
section {
	padding: 40px 0;
}

.section-content {
	display: flex;
	align-items: center;
	gap: 40px;
	margin-bottom: 40px;
}

.section-content.reverse {
	flex-direction: row-reverse;
}

.text-box {
	flex: 1;
}

.image-box {
	flex: 1;
}

.image-box img {
	width: 100%;
	height: auto;
	border-radius: 12px;
	box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

h2 {
	font-size: 2rem;
	color: var(--primary-dark);
	margin-bottom: 20px;
}

p {
	margin-bottom: 15px;
	color: #000;
}

.hedp {
	color: #fff;
}

ul.content-list {
	list-style: none;
	margin: 20px 0;
}

ul.content-list li {
	position: relative;
	padding-left: 30px;
	margin-bottom: 10px;
}

ul.content-list li::before {
	content: "✓";
	position: absolute;
	left: 0;
	color: var(--primary);
	font-weight: bold;
}

/* Footer */
footer {
	background: #111827;
	color: var(--white);
	padding: 40px 0;
	text-align: center;
}

/* Mobile Adjustments */
@media (max-width: 768px) {
	.menu-button {
		display: block;
	}
	
	section {
		padding: 10px 0;
	}

	nav {
		position: absolute;
		top: 70px;
		left: 0;
		width: 100%;
		background: var(--white);
		max-height: 0;
		overflow: hidden;
		transition: max-height 0.4s ease-out;
		box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1);
	}

	nav ul {
		flex-direction: column;
		padding: 20px;
	}

	nav ul li {
		margin: 10px 0;
		text-align: center;
	}

	#menu-toggle:checked ~ nav {
		max-height: 400px;
	}

	.section-content, .section-content.reverse {
		flex-direction: column;
	}

	.hero h1 {
		font-size: 2rem;
	}

	.hero {
		height: 50vh;
	}
}