/* General Styles */
body {
    font-family: Arial, sans-serif;
    background-color: #f0f0f0; /* Light gray background */
    margin: 0;
    padding: 0;
}

section {
    padding: 20px;
}

footer {
    background-color: #006400; /* Dark green footer */
    color: #fff; /* White text */
    padding: 10px;
    text-align: center;
}

footer p {
    margin: 0;
}

/* Header Styles */
header {
    background-color: #006400; /* Dark green header */
    color: #fff; /* White text */
    padding: 20px;
    text-align: center;
}

header h1 {
    margin: 0;
}

nav ul {
    list-style-type: none;
    padding: 0;
}

nav ul li {
    display: inline;
    margin-right: 20px;
}

nav ul li a {
    color: #fff; /* White links */
    text-decoration: none;
}

nav ul li a:hover {
    text-decoration: underline;
}

#logo {
    height: 120px;
    width: 120px;
    z-index: 999;
    position: absolute;
    top: -10px;
    left: 0;
  }

.image {
    height: 50px;
    width: 50px;
    float: left;
    margin-right: 5px;
  }
