/* General Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4; /* Uniform light gray background */
    color: #333; /* Text color for readability */
}

/* Header Section */
header {
    text-align: center;
    background-color: #228b22; /* Green color */
    color: white;
    padding: 20px 10px;
}

/* Navigation */
nav ul {
    display: flex;
    justify-content: center;
    list-style-type: none;
    margin: 0;
    padding: 0;
    background-color: #8b4513; /* Light brown color */
}

nav ul li {
    margin: 0 15px;
}

nav ul li a {
    text-decoration: none;
    color: white;
    font-weight: bold;
    padding: 10px 15px;
}

nav ul li a:hover {
    background-color: #6b8e23; /* Olive green */
    border-radius: 5px;
}

/* Footer Section */
footer {
    text-align: center;
    background-color: #8b4513; /* Light brown color */
    color: white;
    padding: 10px;
    margin-top: 20px;
}

/* Section Styling */
main section {
    padding: 20px;
    margin: 20px auto;
    max-width: 800px;
    background-color: white; /* White content background */
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); /* Subtle shadow for depth */
    border-radius: 10px;
    border: 5px solid #228b22; /* Green border for sections */
}

/* Edge Variations */
main {
    border-left: 10px solid #8b4513; /* Light brown edge */
    border-right: 10px solid #8b4513; /* Light brown edge */
    padding: 10px 0;
}
