/* General Body Styles */
body {
    background-color: #ffffff; /* Default background is now white */
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    margin: 0;
}

/* Re-usable wrapper to center content */
.content-wrapper {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px; /* Add side padding here */
}

/* Header Section (Dark Blue) */
header {
    background-color: #0c1a2c;
    color: #f0f0f0;
    padding: 40px 0; /* Vertical padding */
    text-align: center;
}

.logo-img {
    max-width: 350px; /* Adjust size as needed */
    height: auto;
    margin-bottom: 10px;
}

.tagline {
    font-size: 0.8em;
    color: #f3c42e;
    letter-spacing: 1px;
    margin-top: -5px;
    margin-bottom: 30px;
}

header h1 {
    color: #f3c42e;
    font-size: 2.5em;
    margin-bottom: 20px;
}

.intro-summary {
    max-width: 600px;
    margin: 15px auto;
    color: #c0c0c0;
}

/* Main Content Section (White) */
main {
    background-color: #ffffff;
    color: #333333; /* Default text color for this section */
    padding: 50px 0; /* Vertical padding */
    text-align: left;
}

main h2 {
    color: #111111; /* Darker black for headings */
    border-bottom: 1px solid #dddddd; /* Lighter border */
    padding-bottom: 10px;
    margin-bottom: 20px;
    font-size: 1.5em;
}

main p, main li {
    font-size: 1em;
    color: #555555; /* Grey for body text */
    text-align: justify; /* Paragraphs and list items justified */
}

main ul {
    padding-left: 20px;
    list-style-type: disc;
}

main li {
    margin-bottom: 10px;
}

main strong {
    color: #111111; /* Make bold text darker */
}

/* Link Styling (consistent in both sections) */
a {
    color: #000000; /* Pure black links */
    text-decoration: none;
}

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

.effective-date {
    margin-bottom: 5px;
}
