/* Global Styles */
body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    background-color: #E0E7FF; /* Light indigo/lavender for a soft background */
    color: #1A202C; /* Dark gray for text, good contrast */
}

.container {
    width: 80%;
    margin: auto;
    overflow: hidden;
    padding: 0 20px;
}

/* Header & Navigation */
header {
    background: #303F9F; /* Indigo blue */
    color: #FFFFFF;
    padding-top: 30px;
    min-height: 70px;
    border-bottom: #1A237E 3px solid; /* Darker indigo for border */
}

header a {
    color: #FFFFFF;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 16px;
}

header ul {
    padding: 0;
    margin: 0;
    list-style: none;
    overflow: hidden;
}

header #branding {
    float: left;
}

header #branding h1 {
    margin: 0;
    font-size: 24px;
}

header nav {
    float: right;
    margin-top: 10px;
}

header .highlight,
header .current a {
    color: #C5CAE9; /* Lighter indigo for highlight/current page */
    font-weight: bold;
}

header a:hover {
    color: #9FA8DA; /* Slightly lighter indigo for hover */
}

/* Main Content Area */
.main-content {
    padding: 20px;
    background: #FFFFFF;
    margin-top: 20px;
    margin-bottom: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.main-content h1, .main-content h2, .main-content h3 {
    color: #303F9F; /* Indigo blue for headings */
}

.main-content p {
    margin-bottom: 15px;
}

.main-content ul {
  list-style-type: disc;
  margin-left: 20px;
}

.main-content a {
    color: #3F51B5; /* Standard indigo for links */
    text-decoration: none;
}

.main-content a:hover {
    text-decoration: underline;
}

/* Homepage Specific */
.banner img {
    width: 100%;
    max-height: 400px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
}

/* Footer */
footer {
    padding: 20px;
    margin-top: 20px;
    color: #FFFFFF;
    background-color: #303F9F; /* Indigo blue */
    text-align: center;
}

/* Responsive Design (Basic) */
@media(max-width: 768px) {
    header #branding,
    header nav,
    header nav li {
        float: none;
        text-align: center;
        width: 100%;
    }

    header nav li {
        padding: 5px 0;
    }

    .container {
        width: 95%;
    }
}

