* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
	line-height: 1.6;
	color: #333;
	background-color: #f8f9fa;
}

/* Header and Navigation */
header {
	background: url('images/header.jpg?w=1024') center center / cover no-repeat;
	color: white;
	padding: 1rem 0;
	box-shadow: 0 2px 10px rgba(0,0,0,0.1);
	position: relative;
}

header::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(44, 62, 80, 0.7);
	z-index: 1;
}

.header-container {
	position: relative;
	z-index: 2;
}

.header-top {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	margin-bottom: 1rem;
	gap: 0.5rem;
}

.logo {
	font-size: 2rem;
	font-weight: bold;
	text-decoration: none;
	color: white;
}

.tagline {
	font-size: 0.9rem;
	opacity: 0.9;
	font-style: italic;
}

/* Navigation Menu */
nav {
	border-top: 1px solid rgba(255,255,255,0.2);
	padding-top: 1rem;
}

.nav-menu {
	display: flex;
	list-style: none;
	gap: 2rem;
	justify-content: center;
}

.nav-menu li {
	position: relative;
}

.nav-menu a {
	color: white;
	text-decoration: none;
	padding: 0.5rem 1rem;
	border-radius: 4px;
	transition: all 0.3s ease;
	display: block;
}

.nav-menu a:hover {
	background: rgba(255,255,255,0.1);
	transform: translateY(-2px);
}

.nav-menu a.active {
	background: rgba(255,255,255,0.2);
	font-weight: bold;
}

/* Dropdown Menu */
.dropdown {
	position: relative;
}

.dropdown-content {
	display: none;
	position: absolute;
	top: 100%;
	left: 0;
	background: #34495e;
	min-width: 200px;
	box-shadow: 0 8px 16px rgba(0,0,0,0.2);
	border-radius: 4px;
	z-index: 1000;
	margin-top: 0;          /* ADD THIS LINE */
	padding-top: 0.5rem;    /* ADD THIS LINE */
}

.dropdown:hover .dropdown-content {
	display: block;
}

.dropdown-content a {
	padding: 0.75rem 1rem;
	border-bottom: 1px solid rgba(255,255,255,0.1);
}

.dropdown-content a:last-child {
	border-bottom: none;
}

.dropdown-content a:hover {
	background: rgba(255,255,255,0.1);
}

/* Main Content */
main {
	max-width: 1200px;
	margin: 0 auto;
	padding: 2rem;
}

/* Hero Section */
.hero {
	background: white;
	padding: 3rem 2rem;
	border-radius: 10px;
	box-shadow: 0 5px 20px rgba(0,0,0,0.1);
	max-width: 800px;
	margin: 0 auto 2rem auto;
}

.hero h1 {
	text-align: center;
	font-size: 1.75rem;
	color: #2c3e50;
	margin-bottom: 1rem;
}

.hero h2 {
	text-align: center;
	font-size: 1.3rem;
	color: #7391ae;
	margin-bottom: 1rem;
}

.hero p {
	font-size: 1.1rem;
	color: #666;
	margin: 0 auto 2rem;
}

/* Hero Image */
.hero-image {
	width: 100%;
	height: auto;
	border-radius: 8px;
	box-shadow: 0 5px 20px rgba(0,0,0,0.1);
	margin: 2rem auto;
	display: block;
}

.hero ul {
	font-size: 1rem;
	margin-left: 2rem;
	color: #666;
}

/* Content Sections */
.content-section {
	background: white;
	padding: 2rem;
	border-radius: 10px;
	box-shadow: 0 5px 20px rgba(0,0,0,0.1);
	max-width: 800px;
	margin: 0 auto 2rem auto;
}

.content-section h2 {
	color: #2c3e50;
	margin-bottom: 1rem;
	font-size: 1.8rem;
}

.content-section h3 {
	color: #2c3e50;
	margin-bottom: 1rem;
	font-size: 1.2rem;
}

.content-section ul {
	font-size: 1rem;
	margin-left: 2rem;
	color: #666;
}

.content-section ol {
	font-size: 1rem;
	margin-left: 2rem;
	color: #666;
}

.content-section ul li {
	margin-Bottom: 1rem;
}

.content-section ol li {
	margin-Bottom: 1rem;
}

.content-section p {
	color: #666;
	margin-bottom: 1rem;
}

.content-section ul {
	font-size: 1rem;
	margin-left: 2rem;
	color: #666;
}

.footer-section p  {
	color: #666;
	margin-bottom: 1rem;
	text-align: center;
}

/* Contact Form */
#contactForm {
	max-width: 600px;
	margin: 0 auto;
}

#contactForm label {
	display: block;
	margin-bottom: 0.5rem;
	font-weight: 500;
	color: #555;
}

#contactForm input,
#contactForm textarea {
	width: 100%;
	padding: 0.75rem;
	border: 1px solid #ddd;
	border-radius: 4px;
	font-size: 1rem;
	margin-bottom: 1.5rem;
}

#contactForm button {
	background: #2c3e50;
	color: white;
	padding: 0.75rem 2rem;
	border: none;
	border-radius: 4px;
	font-size: 1rem;
	cursor: pointer;
}

#contactForm button:hover {
	background: #34495e;
}

.download {
	display: block;
	margin-left: auto;
	margin-right: auto;
	width: fit-content;
}

.download a {
  text-decoration: none;
  border: none;
}

.download a img {
  display: block; /* or inline-block */
  border: none;
}

/* Mobile Responsive */
.menu-toggle {
	display: none;
	/* justify-content: center; */
}

@media (max-width: 450px) {
	.header-top {
		display: flex;
		flex-direction: row;
		justify-content: space-between;
		align-items: center;
		gap: 0.5rem;
	}
	
	.header-content {
		display: flex;
		flex-direction: column;
		align-items: flex-start;
		text-align: left;
		gap: 0.3rem;
	}

	.logo {
		font-size: 1rem;
		font-weight: bold;
		text-decoration: none;
		margin: 1rem;
		color: white;
	}
	
	.tagline {
		font-size: 0.9rem;
		opacity: 0.9;
		font-style: italic;
		display: none;
	}
	
	/* Navigation Menu */

	nav {
		border-top: none;
		padding-top: 0;
	}

	.hero h1 {
		font-size: 1.5rem;
	}
	
	.hero h2 {
		font-size: 1.1rem;
	}
	
	.content-section h2 {
		font-size: 1.2rem;
	}

	.hero p {
		font-size: 1rem;
	}

	main {
		padding: 1rem;
	}

	/* Mobile Menu Toggle */
	.menu-toggle {
		display: block;
		background: none;
		border: none;
		color: white;
		font-size: 1.5rem;
		cursor: pointer;
		padding: 0.5rem;
		z-index: 3;
		position: relative;
		order: 2;
	}

	.nav-menu {
		position: fixed;
		top: 0;
		left: 0;
		width: 100%;
		height: 100vh;
		background: rgba(44, 62, 80, 0.95);
		flex-direction: column;
		justify-content: center;
		align-items: center;
		gap: 2rem;
		z-index: 1000;
		display: none; /* Hidden by default */
	}

	.nav-menu.active {
		display: flex !important;
	}

	.nav-menu a {
		font-size: 1.2rem;
		text-align: center;
		padding: 1rem 2rem;
	}

	.dropdown-content {
		position: static;
		display: block;
		box-shadow: none;
		background: rgba(255,255,255,0.1);
		margin-top: 0.5rem;
		border-radius: 4px;
	}
}

/* Footer */
footer {
	background: #2c3e50;
	color: white;
	text-align: center;
	padding: 2rem;
	margin-top: 3rem;
}

footer p {
	opacity: 0.8;
}

footer a {
	color: rgb(166, 198, 231)
}