/* =========================
   BASE STYLES
   ========================= */
body {

    /* =========================
   TOP BANNER / NAV
   ========================= */
body {
    padding-top: 70px; /* sticky banner height */
    margin: 0;
}

.top-banner {
    width: 100%;
    background-color: #000000; /* solid black */
    padding: 12px 0;
    position: sticky;
    top: 0;
    z-index: 300;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.top-banner .banner-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 35px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Left nav links */
.nav-left a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    margin-right: 28px;
}

.nav-left a:hover {
    text-decoration: underline;
}

/* Right nav link */
.nav-right a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
}

.nav-right a:hover {
    text-decoration: underline;
}

/* Responsive adjustment for small screens */
@media (max-width: 768px) {
    .top-banner .banner-inner {
        flex-direction: column;
        gap: 8px;
    }
    .nav-left {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .nav-right {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
}

    font-family: "Georgia", "Merriweather", serif;
    background-color: #f3f4f6;
    color: #1f2933;
    line-height: 1.75;
    margin: 0;
    padding: 0;
}


/* =========================
   CONTAINER
   ========================= */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 30px 35px; /* slightly reduced */
    background-color: #ffffff;
    border-radius: 14px;
    box-shadow: 0 10px 35px rgba(0,0,0,0.08);
}

/* =========================
   TYPOGRAPHY
   ========================= */
h1 {
    font-size: 2.6rem;
    font-weight: 600;
    margin-bottom: 35px;
    text-align: center;
}

h2 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-top: 0;
    margin-bottom: 12px;
    color: #111827;
    letter-spacing: 0.01em;
}

p {
    font-size: 1.05rem;
    margin: 0 0 18px 0;
    max-width: 75ch;
}

/* Intro paragraph */
.intro {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 60px;
    color: #374151;
}

/* =========================
   SECTIONS
   ========================= */
section {
    margin-bottom: 40px;
    padding-left: 20px;
    border-left: 3px solid #e5e7eb;
}

section:last-of-type {
    border-left: none;
    padding-left: 0;
}

/* =========================
   LINKS
   ========================= */
a {
    color: #1a365d;
    text-decoration: underline;
    text-underline-offset: 3px;
}

a:hover {
    color: #111827;
}

/* =========================
   RESPONSIVE
   ========================= */
@media (max-width: 768px) {
    .container {
        padding: 30px 20px;
    }

    h1 {
        font-size: 2.1rem;
    }

    h2 {
        font-size: 1.25rem;
    }

    p,
    .intro {
        font-size: 1rem;
    }
}
