/* General Body & Typography */
html {
    scroll-behavior: smooth; /* This enables smooth scrolling */
}

body {
    font-family: 'Georgia', 'Times New Roman', Times, serif;
    line-height: 1.7;
    margin: 0;
    padding: 0;
    background-color: #f8f9fa; /* A very light grey background */
    color: #343a40; /* Dark grey for text */
}

/* Container for Centering Content */
.container {
    width: 85%;
    max-width: 960px;
    margin: auto;
    padding: 0 20px;
}

/* Header & Navigation */
header {
    background: #ffffff;
    color: #002147; /* Scholarly blue */
    padding: 1rem 0;
    border-bottom: 1px solid #dee2e6;
    position: sticky; /* Makes the nav bar stick to the top */
    top: 0;
    z-index: 1000;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header h1 {
    margin: 0;
    font-size: 1.8em;
}

nav ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

nav ul li {
    display: inline;
    margin-left: 25px;
}

nav a {
    color: #343a40;
    text-decoration: none;
    font-size: 1.1em;
    padding-bottom: 5px;
    transition: border-bottom 0.2s;
}

nav a:hover {
    color: #0056b3;
    border-bottom: 2px solid #0056b3;
}

/* General Section Styling */
.section {
    padding: 60px 0;
    border-bottom: 1px solid #e9ecef;
}

.section:last-of-type {
    border-bottom: none;
}

.section-title {
    text-align: center;
    font-size: 2.2em;
    color: #002147;
    margin-bottom: 40px;
}

/* Home Section (Hero Banner) */
#home {
    background: #002147;
    color: #ffffff;
    text-align: center;
    padding: 80px 0;
}

#home h2 {
    font-size: 3em;
    margin-bottom: 10px;
}

#home p {
    font-size: 1.2em;
    font-style: italic;
}

/* "Our Work" Section */
.work-grid {
    display: grid;
    grid-template-columns: 1fr 1fr; /* Two columns */
    gap: 30px;
}

.work-item {
    background: #ffffff;
    padding: 25px;
    border: 1px solid #dee2e6;
    border-radius: 5px;
}

.work-item h3 {
    margin-top: 0;
    color: #0056b3;
}

/* "About" Section */
.about-content {
    display: flex;
    gap: 40px;
    align-items: center;
}

.about-text {
    flex: 2; /* Takes up 2/3 of the space */
}

.mission-points {
    flex: 1; /* Takes up 1/3 of the space */
    background: #e9ecef;
    padding: 20px;
    border-left: 4px solid #0056b3;
    border-radius: 5px;
}

.mission-points h3 {
    margin-top: 0;
}

/* Contact Section */
#contact {
    background: #343a40;
    color: #f8f9fa;
    text-align: center;
}

#contact .container p {
    margin: 10px 0;
    font-size: 1.1em;
}

#contact a {
    color: #ffffff;
    text-decoration: none;
}

/* Footer */
footer {
    text-align: center;
    padding: 20px;
    background: #f8f9fa;
    color: #6c757d;
    font-size: 0.9em;
}
