body {
    margin: 0;
    font-family: Arial, sans-serif;
}

.umb-topbar {
    background-color: #005a8b;
    color: white;
    padding: 12px 24px;
    text-align: center;
    font-size: 18px;
    font-weight: 600;
}

.umb-topbar-left {
    white-space: nowrap;
}

.umb-topbar-right {
    display: flex;
    gap: 30px;
}

.umb-topbar-right a {
    color: white;
    text-decoration: none;
    font-weight: 400;
}

.umb-topbar-right a:hover {
    text-decoration: underline;
}

.site-title-row {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    background: #f7f7f7;
    border-bottom: 1px solid #d9d9d9;
    padding: 22px 30px;
    column-gap: 20px;
}

.dept-label {
    justify-self: start;
    font-size: 22px;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.site-title {
    justify-self: center;
    font-size: 54px;
    font-weight: 700;
    color: #111;
    text-align: center;
    margin: 0;
}

.header-btn {
    justify-self: end;
    white-space: nowrap;
    margin-top: 0;
}
.site-title-spacer {
    width: 220px;
}

 *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

        :root {
            --bg: #f4f2ee;
            --surface: #ffffff;
            --dark: #1a1a1a;
            --mid: #4a4a4a;
            --muted: #888;
            --accent: #1d5fb4;
            --accent-light: #e8f0fd;
            --border: #ddd;
            --mono: 'IBM Plex Mono', monospace;
            --sans: 'IBM Plex Sans', sans-serif;
        }

        body {
            font-family: var(--sans);
            background: var(--bg);
            color: var(--dark);
            min-height: 100vh;
        }

        /* ── HERO ── */
        .hero {
            background: var(--bg);
            text-align: center;
            padding: 0;
        }
        .hero-cta {
            display: inline-block;
            margin-top: 1.75rem;
            background: var(--accent);
            color: #fff;
            font-family: var(--sans);
            font-size: 0.9rem;
            font-weight: 600;
            text-decoration: none;
            padding: 0.75rem 1.75rem;
            border-radius: 6px;
            transition: background 0.15s, transform 0.1s;
        }
        .hero-cta:hover { background: #174d98; transform: translateY(-1px); }

        /* ── LAYOUT ── */
        .page {
            max-width: 1000px;
            margin: 0 auto;
            padding: 2.5rem 1.5rem;
            display: grid;
            grid-template-columns: 260px 1fr;
            gap: 2rem;
            align-items: start;
        }

        /* ── SIDEBAR: TEAM ── */
        .sidebar {
            position: sticky;
            top: 70px;
        }
        .card {
            background: var(--surface);
            border: 1px solid var(--border);
            border-radius: 10px;
            overflow: hidden;
        }
        .card-header {
            background: var(--dark);
            padding: 0.75rem 1rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .card-header span {
            font-family: var(--mono);
            font-size: 0.72rem;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            color: #aaa;
        }
        .dot { width: 7px; height: 7px; border-radius: 50%; background: #444; }
        .dot.g { background: #3fb950; }
        .team-label {
            padding: 0.85rem 1rem 0.4rem;
            font-family: var(--mono);
            font-size: 0.68rem;
            letter-spacing: 0.12em;
            text-transform: uppercase;
            color: var(--muted);
        }
        .member {
            display: flex;
            align-items: center;
            gap: 0.7rem;
            padding: 0.55rem 1rem;
            transition: background 0.12s;
        }
        .member:hover { background: var(--accent-light); }
        .avatar {
            width: 30px; height: 30px;
            border-radius: 50%;
            background: var(--accent-light);
            border: 1.5px solid var(--accent);
            display: flex; align-items: center; justify-content: center;
            font-size: 0.7rem;
            font-weight: 700;
            color: var(--accent);
            flex-shrink: 0;
        }
        .member-name {
            font-size: 0.875rem;
            color: var(--dark);
        }
        .card-footer {
            border-top: 1px solid var(--border);
            padding: 0.6rem 1rem;
            font-family: var(--mono);
            font-size: 0.68rem;
            color: var(--muted);
        }

        /* ── MAIN CONTENT ── */
        .main-content { display: flex; flex-direction: column; gap: 1.25rem; }

        .section-card {
            background: var(--surface);
            border: 1px solid var(--border);
            border-radius: 10px;
            padding: 1.25rem 1.4rem;
            display: flex;
            gap: 1rem;
            align-items: flex-start;
            transition: box-shadow 0.15s, border-color 0.15s;
            text-decoration: none;
            color: inherit;
        }
        .section-card:hover {
            border-color: var(--accent);
            box-shadow: 0 4px 20px rgba(29, 95, 180, 0.08);
        }
        .icon-box {
            width: 40px; height: 40px;
            border-radius: 8px;
            background: var(--accent-light);
            display: flex; align-items: center; justify-content: center;
            font-size: 1.1rem;
            flex-shrink: 0;
            margin-top: 2px;
        }
        .section-text h2 {
            font-size: 1rem;
            font-weight: 600;
            color: var(--dark);
            margin-bottom: 0.3rem;
        }
        .section-text p {
            font-size: 0.875rem;
            color: var(--mid);
            line-height: 1.55;
        }
        .arrow {
            margin-left: auto;
            color: var(--muted);
            font-size: 1rem;
            align-self: center;
            flex-shrink: 0;
        }
        .section-card:hover .arrow { color: var(--accent); }

        /* ── FOOTER ── */
        footer {
            text-align: center;
            padding: 2rem 1rem;
            font-size: 0.78rem;
            color: var(--muted);
            border-top: 1px solid var(--border);
            margin-top: 1rem;
        }

        @media (max-width: 650px) {
            .page { grid-template-columns: 1fr; }
            .sidebar { position: static; }
        }

.navbar {
    display: flex;
    justify-content: center;
    gap: 40px;
    background-color: #333;
    padding: 14px 0;
    width: 100%;
    border-radius: 0;
    margin: 0;
}
.navbar a {
    color: white;
    text-decoration: none;
    font-size: 18px;
    padding: 6px 12px;
}

.navbar a:hover {
    background-color: #555;
    border-radius: 4px;
}

.hero-navbar {
    margin-top: 0;
}
.middle {
    min-height: 70vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    text-align: center;
    padding-top: 30px;
}

.link-button {
    font-size: 20px;
    padding: 12px 25px;
    background-color: #0077cc;
    color: white;
    text-decoration: none;
    border-radius: 6px;
}

.team {
    margin-top: 10px;
}

.team-title {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 10px;
}

.team ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
    font-size: 20px;
}

.team li {
    margin: 4px 0;
}

.section {
    width: 80%;
    max-width: 900px;
    text-align: left;
}

.section-title {
    font-size: 26px;
    font-weight: bold;
    margin-bottom: 10px;
}

.section-content {
    font-size: 18px;
    line-height: 1.6;
}
