body {
	margin: 0;
	font-family: Arial, sans-serif;
	background-image: url('images/bg.jpg');
	background-size: cover;
	background-position: center;
	color: #000;
}

header {
	text-align: center;
	padding: 15px;
}

header img {
	max-width: 200px;
}

nav {
	background-color: #ccc;
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
}

.nav-links {
	display: flex;
}

.nav-links a {
	color: #0a2944;
	text-decoration: none;
	margin: 0;
	font-weight: bold;
	font-size: 18px;
	padding: 15px 20px;
}

.nav-links a:hover {
	color: #2576ad;
	background-color: #0a2944;
	transition: all 0.3s ease;
}

.hamburger {
	display: none;
	cursor: pointer;
	position: absolute;
	right: 20px;
	top: 12px;
	z-index: 100;
}

.hamburger div {
	width: 30px;
	height: 3px;
	background-color: #0a2944;
	margin: 5px 0;
	transition: all 0.3s ease;
}

.hamburger.active div:nth-child(1) {
	transform: translateY(8px) rotate(45deg);
}

.hamburger.active div:nth-child(2) {
	opacity: 0;
}

.hamburger.active div:nth-child(3) {
	transform: translateY(-8px) rotate(-45deg);
}

.hero {
	text-align: center;
	padding: 40px 20px;
}

.hero h1 {
	font-size: 3em;
	margin: 0;
	font-weight: 800;
}

.hero p {
	font-size: 1.5em;
	margin-top: 10px;
}

.intro-section {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	padding: 20px;
	max-width: 1000px;
	margin: 0 auto;
	background-color: transparent;
}

.intro-section img {
	max-width: 450px;
	margin-right: 20px;
}

.intro-text {
	flex: 1;
}

.intro-text p {
	font-size: 1.25em;
}

.intro-text h2 {
	font-weight: bold;
	margin-top: 30px;
	font-size: 1.25em;
}

.toolkit {
	text-align: center;
	padding: 40px 20px;
}

.toolkit h2 {
	font-size: 2em;
	margin-bottom: 30px;
	font-weight: 800;
}

.toolkit-boxes {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 20px;
}

.toolkit-boxes .toolkit-box:hover {
	transform: translateY(-5px);
	box-shadow: 0px 8px 15px rgba(0,0,0,0.7);
	transition: all 0.3s ease;
}

.toolkit-box {
	background-color: #fff;
	border: 4px solid #0a2944;
	border-radius: 10px;
	padding: 20px;
	width: 300px;
	box-shadow: 0px 4px 10px rgba(0,0,0,0.5)
}

.toolkit-box img {
	max-height: 100px;
	margin-bottom: 10px;
}

.toolkit-box h3 {
	margin: 10px 0;
	font-weight: bold;
}

.toolkit-boxes a {
	color: #FFF;
	text-decoration: none;
	padding: 8px 0px;
	display: block;
	border-radius: 0.5em;
	background: linear-gradient(90deg, #072446, #2576ad, #5dcd92);
}

.toolkit-boxes a:hover {
	background: #0a2944;
}


.toolkit-box p {
	margin: 10px 0;
}

footer {
	background-color: #444;
	color: #FFF;
	text-align: center;
	padding: 10px;
}

@media (max-width: 768px) {
	nav {
		display: block;
	}

	.hamburger {
		display: block;
	}

	.nav-links {
		display: none; 
		flex-direction: column;
		width: 100%;
	}

	.nav-links.active {
		display: flex;
	}

	.nav-links a {
		margin: 0;
		padding: 15px;
		border-top: 1px solid #bbb;
		text-align: center;
	}

	.intro-section {
		flex-direction: column;
		text-align: center;
	}

	.toolkit-boxes {
		flex-direction: column;
		align-items: center;
	}
}