* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Lexend Exa', sans-serif;
}

body {
    font-family: 'Lexend Exa', sans-serif;
    background-color: #f4f4f4;
    color: #333;
    line-height: 1.6;
    margin: 0;
    padding: 0;
}

header {
    background: linear-gradient(45deg, #e0e0e0, #e0e0e0);
    color: black;
    text-align: center;
    padding: 30px 20px 0 20px;
    margin: 0;
    box-shadow: none;
    border-radius: 0;
}

header .photo {
    width: 175px;
    height: 175px;
    border-radius: 50%;
    border: 4px solid white;
    margin: 0 auto 20px auto;
    display: block;
}

header .logo {
    font-size: 40px;
    font-weight: bold;
    margin-bottom: 10px;
}

header .social-buttons {
	display: flex; /* Use flexbox for horizontal layout */
	justify-content: center; /* Center the buttons horizontally */
	margin-top: 20px;
}

header .social-buttons a {
	text-decoration: none;
	color: black;
	margin: 0 10px; /* Space between the buttons */
	padding: 0;  /* Remove padding */
	font-size: 24px;
	width: 50px;
	height: 50px;
	display: flex; /* Flexbox for centering icon inside button */
	align-items: center; /* Vertically center the icon */
	justify-content: center; /* Horizontally center the icon */
	transition: background 0.3s ease;
}

header .social-buttons a img {
	max-width: 30px;
	max-height: 30px;
	width: auto;
	height: auto;
}

header .social-buttons a:hover {
	background-color: #e0e0e0; /* Darker blue for hover effect */
}

/* Navigation Bar */
.main-nav {
    background: linear-gradient(135deg, #006400, #004d00);
    padding: 0;
    margin: 0;
    width: 100%;
    position: sticky;
    top: 0;
    z-index: 999;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    padding: 1rem;
    cursor: pointer;
    z-index: 1001;
}

.mobile-menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background: white;
    margin: 5px 0;
    transition: all 0.3s ease;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.nav-menu {
    display: flex;
    justify-content: center;
    align-items: center;
    flex: 1;
    padding: 0;
    margin: 0;
}

.nav-link {
    color: white;
    text-decoration: none;
    padding: 1rem 1.5rem;
    display: block;
    font-weight: 700;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border-bottom: 3px solid transparent;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5),
                 -1px -1px 2px rgba(255, 255, 255, 0.1);
}

.nav-link:hover {
    background: rgba(255, 255, 255, 0.1);
    border-bottom-color: #90EE90;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.7),
                 -1px -1px 2px rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

/* ===== MOBILE RESPONSIVE ===== */
@media (max-width: 768px) {
    .main-nav {
        padding: 0.5rem 1rem;
        position: sticky;
        top: 0;
    }

    .mobile-menu-toggle {
        display: block;
        margin-left: auto;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        left: -100%;
        width: 280px;
        height: 100vh;
        background: linear-gradient(135deg, #006400, #004d00);
        flex-direction: column;
        justify-content: flex-start;
        padding-top: 4rem;
        transition: left 0.3s ease;
        box-shadow: 2px 0 10px rgba(0, 0, 0, 0.3);
        z-index: 1000;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-link {
        width: 100%;
        padding: 1rem 1.5rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        border-left: 3px solid transparent;
    }

    .nav-link:hover {
        background: rgba(255, 255, 255, 0.1);
        border-left-color: #90EE90;
        border-bottom-color: rgba(255, 255, 255, 0.1);
    }

    header {
        flex-direction: column;
        padding: 1rem 1rem 0 1rem;
    }

    header .photo {
        width: 80px;
        height: 80px;
    }

    header .social-buttons {
        gap: 10px;
        margin-top: 15px;
    }

    header .social-buttons a {
        width: 40px;
        height: 40px;
    }

    header .social-buttons a img {
        max-width: 24px;
        max-height: 24px;
    }

    header .logo img {
        max-height: 60px;
    }
}

@media (max-width: 480px) {
    .nav-menu {
        width: 100%;
        left: -100%;
    }

    .nav-link {
        padding: 0.875rem 1rem;
        font-size: 0.95rem;
    }

    header .photo {
        width: 60px;
        height: 60px;
    }

    header .logo img {
        max-height: 50px;
    }

    header .social-buttons a {
        width: 36px;
        height: 36px;
    }
}

/* Desktop optimization */
@media (min-width: 1024px) {
    .main-nav {
        padding: 0;
    }

    .nav-link {
        padding: 1.25rem 2rem;
    }
}

main {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding: 50px 20px 0 20px;
    margin: 0;
    background: #f4f4f4;
}

.widget {
    flex: 1 1 45%;
    max-width: 45%;
    margin: 20px;
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    text-align: center;
    transition: transform 0.3s ease;
}

.widget:hover {
    transform: translateY(-10px);
}

.widget img {
    width: 100%;
    height: auto;
}

.widget .content {
    padding: 20px;
}

.widget .content a {
    text-decoration: none;
    color: white;
    background: linear-gradient(45deg, #006400, #000000);
    padding: 10px 20px;
    border-radius: 5px;
    font-size: 16px;
    font-weight: bold;
    text-transform: uppercase;
    transition: background 0.3s ease;
}

.widget .content a:hover {
    background: #2F80ED; /* Darker blue on hover */
}

@media screen and (max-width: 768px) {
    .widget {
	flex: 1 1 100%;
	max-width: 100%;
    }
}

footer {
    background: linear-gradient(90deg, #000000, #434343); /* Black to grey gradient */
    color: white;
    text-align: center;
    padding: 20px;
    margin: 0;
    font-size: 16px;
}

.container { display: flex; flex-wrap: wrap; justify-content: space-between; }
.column { width: 48%; }
table { width: 100%; border-collapse: collapse; }
th, td { border: 1px solid #ccc; padding: 8px; text-align: left; }
th { background-color: #333; color: white; }
tr:nth-child(even) { background-color: #f2f2f2; }
@media (max-width: 768px) {
    .container { flex-direction: column; }
    .column { width: 100%; }
}
.summary {
    font-weight: bold;
    text-align: right;
    padding: 10px;
}

h1 {
    text-align: center;
    background: green;
    color: white;
}

h1 a {
    color: white;
    text-decoration: none;
}
