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

body {
	font-family: Arial, sans-serif;
	background: #f4f4f4;
}

/* Skip Navigation Link */
.skip-link {
	position: absolute;
	top: -40px;
	left: 0;
	background: #000;
	color: white;
	padding: 8px;
	text-decoration: none;
	z-index: 100;
	font-weight: bold;
}

.skip-link:focus {
	top: 0;
}

/* Top Bar */
.navbar {
	background-color: #244b24; /* Darker Green */
	height: 360px;
	
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	padding: 0 30px 20px;
	box-shadow: 0 2px 5px rgba(0,0,0,0.3);
}


.navbar-banner {
	position: absolute;

	top: 50px;      /* Distance from top */
	left: 50%;

	transform: translateX(-50%);

	width: 80%;
	height: 300px;

	object-fit: fill;
}
@media only screen and (max-width: 600px) {.navbar {height: 207px;} .navbar-banner {top:-50px; object-fit: contain;}}

/* Left Side */
.nav-left {
	display: flex;
	align-items: center;
}

/* Dropdown Button */
.dropbtn {
	background-color: #0a4a0a;
	color: white;
	border: none;
	padding: 12px 18px;
	font-size: 16px;
	cursor: pointer;
	border-radius: 4px;
}

.dropbtn:hover {
	background-color: #0f5e0f;
}

.dropbtn:focus {
	outline: 3px solid #FFD700;
	outline-offset: 2px;
}

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

.dropdown-content {
	display: none;
	position: absolute;
	top: 50px;
	left: 0;
	background: white;
	min-width: 200px;
	box-shadow: 0 4px 10px rgba(0,0,0,0.3);
	border-radius: 4px;
	overflow: hidden;
}

.dropdown-content a,
.dropdown-content button {
	width: 100%;
	padding: 12px;
	border: none;
	background: white;
	text-align: left;
	cursor: pointer;
	font-size: 15px;
	display: block;
	text-decoration: none;
	color: #000;
}

.dropdown-content a:hover,
.dropdown-content button:hover {
	background: #e8e8e8;
}

.dropdown-content a:focus,
.dropdown-content button:focus {
	outline: 3px solid #FFD700;
	outline-offset: -2px;
}

.show {
	display: block;
}



/* Main Content Body */
.main-body {
    max-width: 1000px;
    margin: 40px auto;
    padding: 30px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
    text-align: center;
}

.main-body h1 {
    margin-bottom: 20px;
}

.main-body p {
    font-size: 18px;
    line-height: 1.6;
}
.footer {
    color: white;
    text-align: left;
    padding: 30px 20px;
    margin-top: 50px;
}

.footer h3 {
    margin-bottom: 15px;
    color:black
}

.footer p {
    margin: 5px 0;
}
.social-icons {
    display: flex;
    gap: 20px;
}
.footer-info {
    color: black;
    text-align: center;
    padding: 20px 10px;
    margin-top: -80px;
}
.footer-r {
    color: black;
    text-align: right;
    padding: 20px 10px;
    margin-top: -80px;
    margin-right: 600px;
}
