/* Reset some basic elements */
body, h1, h2, h3, p, ul, li {
    margin: 0;
    padding: 0;
    list-style: none;
}

/* General body styles */
body {
    font-family: Arial, sans-serif;
    color: #333;
    background-color: #ffffff;
    line-height: 1.6;
    font-size: 16px;
}

/* Header */
.header {
    background-color: #3558c7;
    color: #ffffff;
    padding: 10px 0;
}

/* Enhanced Navbar Styling */
.navbar {
    background-color: #3558c7; /* Adjust color for better contrast if needed */
    color: #ffffff;
    padding: 10px 0;
    width: 100%; /* Ensure full width for better control */
}

.navbar a {
    color: #fff; /* Ensuring high contrast */
    font-size: 18px; /* Increasing font size for better readability */
    font-weight: bold; /* Making text bolder */
    text-decoration: none;
    padding: 10px 15px; /* Adding more padding around links */
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5); /* Subtle text shadow for depth */
}

.navbar a:hover, .navbar a:focus {
    color: #aadfff; /* Lighter color on hover for interactivity */
    text-decoration: underline; /* Underline on hover for clarity */
}

/* Responsive adjustments for mobile devices */
@media (max-width: 768px) {
    .navbar a {
        font-size: 16px; /* Slightly smaller font size on smaller screens */
        padding: 8px 10px; /* Adjust padding for smaller screens */
    }
}

.navbar-brand img {
    height: 60px; /* Adjust based on your actual logo size */
}

/* Main content area */
.container {
    width: 90%;
    margin: 20px auto;
    background-color: #fff;
    padding: 20px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

/* SEO and Semantic Friendly Titles and Content */
h2, h3 {
    color: #004a99;
}

/* Link Styles */
a {
    color: #0066cc;
    text-decoration: none;
}

a:hover, a:focus {
    text-decoration: underline;
}

/* Footer styling */
footer {
    background-color: #3558c7;
    color: #ffffff;
    text-align: center;
    padding: 20px 0;
    margin-top: 20px;
}

.footer-menu ul {
    display: flex;
    justify-content: center;
}

.footer-menu a {
	color: #fff;
}

.footer-menu li {
    margin: 0 10px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
    }

    .footer-menu ul {
        flex-direction: column;
    }
}

/* Additional Visual Enhancements */
ul {
    padding-left: 0;
}

/* Improve readability */
p, li {
    line-height: 1.6;
}

