body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    color: #333;
}

/* Updated header styling to be a column flexbox */
header {
    display: flex;
    flex-direction: column; /* Stacks children vertically */
    align-items: center; /* Centers children horizontally */
    background: #006400;
    color: white;
    padding: 20px 10px;
}

/* Container for the logo and heading */
.header-top {
    display: flex; /* Use Flexbox for the logo and heading */
    align-items: center; /* Vertically aligns the image and text */
    justify-content: center; /* Centers the whole container */
    width: 100%; /* Allows it to take up full width for centering */
    position: relative; /* Needed for positioning child elements inside */
}

/* Heading styling for centering */
.header-title {
    margin: 0;
    font-size: 2em; /* Keep or adjust font size as needed */
    text-align: center; /* Centers the heading text */
}

/* Logo image styling, using absolute positioning for placement */
.header-logo {
    position: absolute;
    left: 10px; /* Positions logo to the left, adjust as needed */
    height: auto;
    width: 100px; /* Maintain existing size */
}

/* Navigation container styling */
.header-nav-container {
    width: 100%;
    text-align: center;
    padding-top: 10px; /* Adds space between heading and menu */
}

nav a {
    margin: 0 10px;
    color: white;
    text-decoration: none;
    font-weight: bold;
}

main {
    padding: 20px;
}

section {
    margin-bottom: 30px;
}

footer {
    text-align: center;
    padding: 10px;
    background: #333;
    color: white;
}

form input, form textarea {
    display: block;
    width: 100%;
    max-width: 400px;
    margin-bottom: 10px;
    padding: 10px;
}

button {
    background: #006400;
    color: white;
    padding: 10px 20px;
    border: none;
    cursor: pointer;
}
