body {
    margin: 0;
    font-family: Inter, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Apple Color Emoji", "Segoe UI Emoji";
    font-weight: 400;
    font-size: 16px;
    line-height: 1.6;
    background: var(--bg);
    color: var(--text);
}

.logo img {
    height: 50px; /* Adjust as needed */
    vertical-align: middle;
    display: block; /* remove inline centering artifacts */
    margin: 0; /* ensure no auto margins center it */
}
header {
    display: flex;
    justify-content: space-between;
    align-items: center; /* use valid value */
    padding: 10px 0; /* remove horizontal header padding so container controls alignment */
}

/* CSS Variables */
:root {
    --content-indent: 20px; /* consistent left/right page padding */
}

/* Center header content to match section max-width */
.container {
    max-width: 800px; /* match section max-width */
    width: 100%;
    box-sizing: border-box; /* include padding in width calculations */
    margin: 0 auto;
    display: flex;
    justify-content: flex-start; /* align children from the left edge */
    align-items: center;
    padding: 0 var(--content-indent); /* use consistent indent */
}

/* On very wide screens, keep header content from stretching too much */
@media (min-width: 1100px) {
    .container {
        max-width: 1000px; /* give a little more room on very wide screens */
    }
}

header .logo {
    font-size: 1.5em;
    font-weight: bold;
    margin: 0; /* remove previous auto margin that could affect layout */
    flex: 0 0 auto; /* do not grow or shrink */
}
nav button {
    margin-left: 10px;
    padding: 5px 10px;
    background: #fff;
    color: #004080;
    border: none;
    cursor: pointer;
}
section {
    padding: 8px 20px; /* smaller vertical padding, keep horizontal spacing */
    max-width: 800px;
    margin: 8px auto; /* small vertical margins between sections */
}
.btn {
    display: inline-block;
    padding: 10px 15px;
    background: #004080;
    color: #fff;
    text-decoration: none;
    margin-top: 10px;
}
footer {
    text-align: center;
    padding: 10px;
    background: #f4f4f4;
}

/* Hero layout */
.hero {
    background: linear-gradient(180deg, rgba(0,64,128,0.06), transparent 60%);
    border-bottom: 1px solid rgba(0,0,0,0.05);
    padding-top: 24px; /* top space for header */
}
.hero-inner {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 24px;
    align-items: center;
}
.hero-graphic {
    width: 100%;
    height: 160px;
    background: linear-gradient(135deg, rgba(0,120,210,0.12), rgba(0,64,128,0.06));
    border-radius: 12px;
    box-shadow: 0 6px 18px rgba(2,6,23,0.06);
}
.hero h1 {
    margin: 0 0 8px 0;
    font-size: 1.8rem;
}
.hero p {
    margin: 0 0 12px 0;
    color: rgba(0,0,0,0.7);
}

/* Card-like sections */
.container > h2, .container > p, .container > ul {
    background: transparent;
}
.container section-card {
}
.container + .container {
    margin-top: 12px;
}

.container {

}
/* Make sections feel like cards on light backgrounds */
.container .card {
    background: rgba(255,255,255,0.02);
    padding: 14px;
    border-radius: 8px;
}

/* Button polish */
.btn {
    display: inline-block;
    padding: 10px 16px;
    background: linear-gradient(90deg,#00629b,#004080);
    color: #fff;
    text-decoration: none;
    margin-top: 10px;
    border-radius: 8px;
    box-shadow: 0 6px 14px rgba(0,64,128,0.12);
}

/* Responsive adjustments */
@media (max-width: 800px) {
    .hero-inner {
        grid-template-columns: 1fr;
    }
    .hero-graphic {
        height: 120px;
    }
    .container {
        padding: 0 calc(var(--content-indent) - 4px); /* slightly smaller on mobile */
    }
}

/* Align lists with headings inside the centered container */
.container ul {
    margin: 0;
    padding-left: var(--content-indent); /* align list text with headings */
    list-style-position: outside; /* bullets sit outside the text area */
}
.container li {
    margin: 6px 0;
}
.container li a {
    display: inline-block;
    color: #003a63;
    text-decoration: none;
}
.container li a:hover {
    text-decoration: underline;
}
