/* Typography adjustments */
body {
    font-family: Arial, sans-serif; /* Ensure consistent font family */
    color: #333; /* Adjust text color for better contrast */
}

header {
    background-color: #4CAF50; /* Adjust header background color */
    color: #fff; /* Adjust header text color for better contrast */
    padding: 20px;
    text-align: center;
}

nav {
    text-align: center;
    padding: 10px;
}

nav a {
    color: #333; /* Adjust navigation link color */
    text-decoration: none;
    font-weight: bold; /* Enhance navigation link readability */
    margin: 0 10px; /* Add spacing between navigation links */
}

main {
    background-color: #FFFFFF;
    margin-left: 190px;
    padding-left: 30px;
}

main ul {
    list-style-image: none;
    margin: 0;
    padding-left: 0;
    font-size: 1.2em;
}

footer {
    margin-left: 190px;
    background-color: #FFFFFF;
    font-size: 75%;
    font-style: italic;
    text-align: center;
    font-family: 'Georgia', 'Times New Roman', serif;
    padding: 15px;
    /* Color contrast adjustments */
    color: #333; /* Adjust footer text color for better contrast */
}

/* Color contrast adjustments */
h2 {
    color: #4CAF50; /* Adjust heading color for better contrast */
}

table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
}

th, td {
    padding: 8px;
    text-align: center;
    border: 1px solid #ddd;
}

th {
    background-color: #4CAF50;
    color: #fff;
}

/* Responsive design adjustments */
@media only screen and (max-width: 37.5em) {
    /* Adjustments for smaller screens */
    main {
        margin-left: 0;
        padding-left: 15px; /* Adjust padding for better readability */
    }

    footer {
        margin-left: 0;
    }
}

/* Accessibility and typography improvements */
#color-contrast, #typography, #navigation-clarity, #responsive-design, #implementation-plan {
    margin: 20px 0;
    padding: 20px;
    background-color: #fff; /* Ensure a distinct section background for contrast */
    border: 1px solid #ddd;
    border-radius: 8px;
}

#color-contrast h2, #typography h2, #navigation-clarity h2, #responsive-design h2, #implementation-plan h2 {
    color: #4CAF50; /* Ensure headings are consistent and have good contrast */
    margin-bottom: 10px;
}

#color-contrast p, #typography p, #navigation-clarity p, #responsive-design p, #implementation-plan p {
    color: #333; /* Ensure paragraph text is consistent and readable */
    line-height: 1.6;
}

/* Additional responsive design adjustments */
@media only screen and (max-width: 600px) {
    #color-contrast, #typography, #navigation-clarity, #responsive-design, #implementation-plan {
        margin: 10px 0;
        padding: 15px;
    }
}

