:root {
    --primary: #0b2a4a;
    --secondary: #174a7c;
    --text: #1f2933;
    --muted: #6b7280;
    --border: #d1d5db;
    --bg: #ffffff;
    --bg-alt: #f9fafb;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: "Segoe UI", Roboto, Arial, sans-serif;
    color: var(--text);
    background-color: var(--bg);
    line-height: 1.6;
}

/* HEADER */

.header {
    background-color: var(--primary);
    border-bottom: 4px solid var(--secondary);
}

.header-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
    text-align: center;
}

.header h1 {
    margin: 0;
    font-size: 22px;
    font-weight: 600;
    color: #ffffff;
}

.header p {
    margin: 4px 0 0;
    font-size: 14px;
    color: #dbeafe;
}

/* NAVIGATION */

.nav a {
    color: #ffffff;
    text-decoration: none;
    margin-left: 24px;
    font-size: 14px;
    font-weight: 500;
}

.nav a:hover {
    text-decoration: underline;
}

/* MAIN CONTENT */

.content {
    max-width: 900px;
    margin: 48px auto;
    padding: 0 24px;
}

section {
    margin-bottom: 48px;
    padding-bottom: 32px;
    border-bottom: 1px solid var(--border);
}

section:last-child {
    border-bottom: none;
}

h2 {
    font-size: 20px;
    margin-bottom: 16px;
    font-weight: 600;
    color: var(--primary);
}

p {
    margin: 0 0 14px;
    font-size: 15px;
}

ul {
    padding-left: 20px;
    margin-top: 12px;
}

li {
    margin-bottom: 8px;
    font-size: 15px;
}

/* DISCLAIMER / NOTICE */

strong {
    display: block;
    margin-bottom: 10px;
    color: var(--primary);
}

/* FOOTER */

.footer {
    background-color: var(--bg-alt);
    border-top: 1px solid var(--border);
    padding: 24px 16px;
    text-align: center;
    font-size: 13px;
    color: var(--muted);
}

.footer p {
    margin: 6px 0;
}


/* BRAND */

.brand {
    display: flex;
    align-items: center;
    gap: 14px;
}

.logo {
    height: 70px;
}

.brand-text {
    display: flex;
    flex-direction: column;
}

.brand-tagline {
    font-size: 13px;
    color: #dbeafe;
    letter-spacing: 0.3px;
}

/* CONTENT REFINEMENT */

section {
    position: relative;
    margin-bottom: 56px;
    padding-bottom: 36px;
}

section::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 48px;
    height: 2px;
    background: linear-gradient(
        to right,
        #174a7c,
        transparent
    );
}

/* HEADINGS */

h2 {
    position: relative;
    padding-left: 12px;
}

h2::before {
    content: "";
    position: absolute;
    left: 0;
    top: 6px;
    width: 4px;
    height: 18px;
    background: #174a7c;
}

/* LISTS */

ul {
    border-left: 2px solid #e5e7eb;
    padding-left: 18px;
}

li {
    position: relative;
    padding-left: 6px;
}

/* FOOTER */

.footer {
    background: #0b2a4a;
    color: #cbd5e1;
}

.footer p {
    color: #cbd5e1;
}


