/* General Body Styles */
body {
    font-family: 'Lato', sans-serif; /* Readability-focused sans-serif font */
    line-height: 1.6;
    color: #333; /* Dark grey for text, not pure black */
    background-color: #f9f9f9; /* Very light grey background */
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* Header and Navigation */
header {
    width: 100%;
    padding: 20px 0;
    border-bottom: 1px solid #eee;
    background-color: #fff;
}

header h1 {
    text-align: center;
    margin: 0;
    font-family: 'Lora', serif; /* Elegant serif font for the title */
    color: #2c3e50; /* Deep, muted blue */
}

nav {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 10px;
}

nav a {
    text-decoration: none;
    color: #555;
    font-weight: bold;
}

nav a:hover {
    color: #2c3e50;
}

/* Main Content Area */
main {
    flex-grow: 1;
    width: 100%;
    max-width: 800px; /* Optimal width for reading */
    margin: 40px auto; /* Centering the content */
    padding: 0 20px;
}

h2 {
    font-family: 'Lora', serif;
    color: #2c3e50;
}

/* Hero Section on Homepage */
.hero {
    text-align: center;
    padding: 40px 0;
}

.hero h2 {
    font-size: 2em;
    margin-bottom: 10px;
}

.hero p {
    font-size: 1.2em;
    color: #555;
}

/* Button Style */
.button {
    display: inline-block;
    background-color: #34495e; /* Slightly different deep blue */
    color: #fff;
    padding: 12px 25px;
    text-decoration: none;
    border-radius: 5px;
    margin-top: 20px;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.button:hover {
    background-color: #2c3e50;
}

/* Article styling for Offerings page */
article {
    background-color: #fff;
    padding: 20px;
    margin-bottom: 20px;
    border: 1px solid #eee;
    border-radius: 5px;
}

/* Footer */
footer {
    width: 100%;
    text-align: center;
    padding: 20px 0;
    margin-top: 40px;
    border-top: 1px solid #eee;
    font-size: 0.9em;
    color: #777;
}

footer a {
    color: #555;
    text-decoration: none;
}

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