/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    background-color: #f9f9f9;
    color: #333;
}

/* Header Section */
header {
    background-color: #006403;
    color: white;
    padding: 1rem 2rem;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

nav {
    display: flex;
    justify-content: center;
    align-items: center;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    font-size: 1rem;
    transition: color 0.3s;
}

nav ul li a:hover {
    color: #ffdd00;
}

/* Main Section */
main {
    margin-top: 5rem;
    text-align: center;
    padding: 2rem;
}

.center-logo {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    height: 25vh;
}

.center-logo img {
    max-width: 200px;
    height: auto;
}

/* About Section */
section {
    padding: 2rem 1rem;
    max-width: 800px;
    margin: 0 auto;
}

h2 {
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

p {
    font-size: 1rem;
    line-height: 1.6;
}

/* Footer Section */
footer {
    text-align: center;
    padding: 1rem;
    background-color: #333;
    color: white;
    margin-top: 2rem;
}

footer p {
    margin: 0;
}