body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #FFFFFF; /* Pure white background for cleanliness */
    color: #333333; /* Dark gray for text to reduce harshness on the eyes */
}

header {
    background-color: #F8F9FA; /* Very light gray for a subtle header */
    color: #007BFF; /* Bright blue for a pop of professional color */
    padding: 20px 0;
    text-align: center;
    border-bottom: 2px solid #E9ECEF; /* Light gray border for a clean line */
}

main {
    padding: 20px;
}

section {
    margin-bottom: 20px;
    padding: 15px;
    background-color: #FFFFFF; /* Maintaining a clean look */
    box-shadow: 0 2px 4px rgba(0,0,0,0.1); /* Soft shadow for depth */
    border-radius: 5px; /* Slightly rounded corners for a friendly touch */
}

h2 {
    color: #007BFF; /* Using the same blue for headings to maintain consistency */
    border-bottom: 1px solid #E9ECEF; /* Light underline to separate section titles */
    padding-bottom: 10px; /* Space between the title and underline */
}

ul, p {
    margin: 10px 0;
}

li {
    margin-bottom: 5px;
    line-height: 1.6; /* Improved line spacing for readability */
}

footer {
    background-color: #007BFF; /* Matching the header for a cohesive look */
    color: white;
    text-align: center;
    padding: 10px;
    position: fixed;
    width: 100%;
    bottom: 0;
    border-top: 3px solid #E9ECEF; /* Adds a finishing touch to the footer */
}

/* Additional styling to improve readability and visual appeal */
a {
    color: #007BFF;
    text-decoration: none; /* Removes underline from links for a cleaner look */
}

a:hover {
    text-decoration: underline; /* Adds underline on hover for visual feedback */
}

/* Style for making lists look neater */
ul {
    list-style-position: inside; /* Adjusts bullet points inside to align text */
}
