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

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    color: #1a1a2e;
    background: #fff;
    line-height: 1.7;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ── Header ── */
header {
    background: #0d1b4b;
    padding: 18px 0;
}
header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.logo {
    display: flex;
    align-items: center;
}
.logo img {
    height: 52px;
    width: auto;
    display: block;
}
nav a {
    color: #a8c4f0;
    text-decoration: none;
    margin-left: 2rem;
    font-family: sans-serif;
    font-size: 0.9rem;
}
nav a:hover { color: #fff; }

/* ── Hero ── */
.hero {
    background: linear-gradient(160deg, #0d1b4b 0%, #1a3a8f 60%, #2255cc 100%);
    color: #fff;
    padding: 80px 0 0;
}
.hero-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px 60px;
}
.eyebrow {
    display: inline-block;
    background: rgba(255,255,255,0.15);
    border: 1px solid rgba(255,255,255,0.3);
    color: #c8dcff;
    font-family: sans-serif;
    font-size: 0.78rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 4px 14px;
    border-radius: 100px;
    margin-bottom: 24px;
}
.hero h1 {
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    line-height: 1.15;
    margin-bottom: 24px;
    font-weight: 700;
}
.hero h1 em {
    font-style: normal;
    color: #7eb8ff;
}
.hero p {
    font-size: 1.2rem;
    max-width: 580px;
    color: #c8dcff;
    font-family: sans-serif;
    line-height: 1.6;
}
.hero-stat-bar {
    background: rgba(0,0,0,0.25);
    border-top: 1px solid rgba(255,255,255,0.1);
    display: flex;
    justify-content: center;
    gap: 0;
}
.stat {
    padding: 28px 60px;
    text-align: center;
    color: #fff;
}
.stat strong {
    display: block;
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 4px;
}
.stat span {
    font-family: sans-serif;
    font-size: 0.85rem;
    color: #a8c4f0;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.stat-divider {
    width: 1px;
    background: rgba(255,255,255,0.15);
    margin: 20px 0;
}

/* ── Split Section ── */
.split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 440px;
}
.split-text {
    background: #f4f7fe;
    padding: 70px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.split-text h2 {
    font-size: 1.9rem;
    color: #0d1b4b;
    margin-bottom: 20px;
    line-height: 1.25;
}
.split-text p {
    color: #444;
    font-family: sans-serif;
    font-size: 1rem;
    margin-bottom: 16px;
}
.split-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* ── Pillars ── */
.pillars {
    padding: 80px 0;
    background: #fff;
}
.section-heading {
    text-align: center;
    font-size: 2rem;
    color: #0d1b4b;
    margin-bottom: 48px;
}
.pillars-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}
.pillar {
    border: 1px solid #e0e8f8;
    border-radius: 10px;
    padding: 36px 28px;
    transition: box-shadow 0.2s;
}
.pillar:hover {
    box-shadow: 0 8px 24px rgba(13,27,75,0.1);
}
.pillar-icon {
    font-size: 2.2rem;
    margin-bottom: 16px;
}
.pillar h3 {
    font-size: 1.2rem;
    color: #0d1b4b;
    margin-bottom: 12px;
}
.pillar p {
    font-family: sans-serif;
    font-size: 0.95rem;
    color: #555;
    line-height: 1.6;
}

/* ── CTA Band ── */
.cta-band {
    background: #0d1b4b;
    color: #fff;
    padding: 70px 0;
    text-align: center;
}
.cta-band h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}
.cta-band p {
    font-family: sans-serif;
    font-size: 1.1rem;
    color: #a8c4f0;
    max-width: 680px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ── Footer ── */
footer {
    background: #06102e;
    color: #8a9cc0;
    padding: 40px 0 24px;
    font-family: sans-serif;
    font-size: 0.9rem;
}
.footer-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 24px;
}
.footer-row strong {
    display: block;
    color: #fff;
    font-size: 1rem;
    margin-bottom: 6px;
}
.footer-row a {
    color: #7eb8ff;
    text-decoration: none;
}
.footer-row a:hover { text-decoration: underline; }
.footer-bottom {
    border-top: 1px solid #1a2d5a;
    padding-top: 20px;
    text-align: center;
}
.footer-bottom p { margin-bottom: 6px; }
.disclaimer { font-size: 0.8rem; color: #5a7099; font-style: italic; }

/* ── Privacy Page ── */
.privacy-page {
    padding: 60px 0;
}
.privacy-page h1 {
    font-size: 2.2rem;
    color: #0d1b4b;
    margin-bottom: 32px;
}
.privacy-content h2 {
    font-size: 1.4rem;
    color: #0d1b4b;
    margin: 28px 0 12px;
}
.privacy-content p, .privacy-content li {
    font-family: sans-serif;
    font-size: 0.97rem;
    color: #444;
    line-height: 1.8;
    margin-bottom: 10px;
}
.privacy-content ul { margin-left: 24px; margin-bottom: 16px; }
.privacy-content a { color: #1a3a8f; }

/* ── Responsive ── */
@media (max-width: 768px) {
    .split { grid-template-columns: 1fr; }
    .split-image { display: none; }
    .split-text { padding: 48px 24px; }
    .pillars-grid { grid-template-columns: 1fr; }
    .stat { padding: 20px 28px; }
    .hero-stat-bar { flex-wrap: wrap; }
    .stat-divider { display: none; }
    .footer-row { flex-direction: column; gap: 16px; }
}

/* ── FEC Disclaimer Box ── */
.disclaimer-box {
    display: inline-block;
    border: 1px solid rgba(255,255,255,0.5);
    padding: 6px 14px;
    margin-top: 10px;
    font-size: 0.82rem;
    color: #c8d4e8;
    font-style: normal;
    font-family: sans-serif;
    line-height: 1.5;
    background: rgba(255,255,255,0.05);
}
