:root {
    --navy: #111827;
    --blue: #2563eb;
    --sky: #e0f2fe;
    --gold: #d6a94a;
    --text: #1f2937;
    --muted: #64748b;
    --line: #e5e7eb;
    --bg: #f8fafc;
    --white: #ffffff;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    background: linear-gradient(180deg, #f8fafc 0%, #eef4ff 100%);
    color: var(--text);
    font-family: Georgia, 'Times New Roman', serif;
    line-height: 1.65;
}

.container {
    width: min(1160px, 92%);
    margin: 0 auto;
}

.topbar {
    background: var(--white);
    border-bottom: 1px solid var(--line);
    padding: 22px 0;
}

.topbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.eyebrow {
    color: var(--gold);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1.8px;
    font-family: Arial, sans-serif;
    font-weight: 700;
}

.brand {
    color: var(--navy);
    font-size: 28px;
    font-weight: 700;
    letter-spacing: 0.4px;
}

.nav {
    display: flex;
    gap: 22px;
    flex-wrap: wrap;
}

.nav a {
    color: var(--navy);
    text-decoration: none;
    font-family: Arial, sans-serif;
    font-size: 14px;
    font-weight: 700;
}

.nav a:hover {
    color: var(--blue);
}

.hero-alt {
    padding: 70px 0 48px;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.4fr 0.8fr;
    gap: 34px;
    align-items: stretch;
}

.badge {
    display: inline-block;
    background: var(--sky);
    color: #075985;
    padding: 8px 12px;
    border-radius: 999px;
    font-family: Arial, sans-serif;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 18px;
}

.hero-alt h1 {
    font-size: clamp(38px, 5vw, 64px);
    line-height: 1.08;
    margin: 0 0 20px;
    color: var(--navy);
    letter-spacing: -1.2px;
}

.hero-alt p {
    font-size: 19px;
    max-width: 760px;
    color: #475569;
    margin-bottom: 28px;
}

.hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.button,
button {
    border: 0;
    border-radius: 999px;
    padding: 13px 20px;
    font-family: Arial, sans-serif;
    font-weight: 700;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
}

.button.primary,
button {
    background: var(--blue);
    color: var(--white);
}

.button.secondary {
    background: var(--white);
    color: var(--blue);
    border: 1px solid #bfdbfe;
}

.button:hover,
button:hover {
    opacity: 0.9;
}

.summary-card {
    background: var(--navy);
    color: var(--white);
    border-radius: 26px;
    padding: 32px;
    box-shadow: 0 16px 40px rgba(15, 23, 42, 0.18);
}

.summary-card h3 {
    margin-top: 0;
    font-size: 24px;
}

.summary-card ul {
    padding-left: 20px;
    margin-bottom: 0;
}

.summary-card li {
    margin-bottom: 10px;
    color: #e5e7eb;
}

.section {
    padding: 20px 0 70px;
}

.section-title {
    max-width: 760px;
    margin-bottom: 26px;
}

.section-title span,
.page-heading span {
    font-family: Arial, sans-serif;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 1.6px;
    font-size: 12px;
    font-weight: 700;
}

.section-title h2,
.page-heading h1 {
    margin: 8px 0 0;
    color: var(--navy);
    line-height: 1.15;
}

.section-title h2 {
    font-size: 36px;
}

.feature-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.feature {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 22px;
    padding: 28px;
}

.number {
    color: var(--gold);
    font-weight: 700;
    font-family: Arial, sans-serif;
    margin-bottom: 14px;
}

.feature h3 {
    margin: 0 0 10px;
    color: var(--navy);
}

.feature p {
    color: var(--muted);
    margin-bottom: 0;
}

.content-card {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 24px;
    margin-top: 46px;
    margin-bottom: 46px;
    padding: 42px;
    box-shadow: 0 14px 34px rgba(15, 23, 42, 0.06);
}

.content-card h3 {
    color: var(--navy);
    margin-top: 28px;
}

.contact-panel,
.legal-box,
.notice {
    background: #f8fafc;
    border: 1px solid var(--line);
    border-left: 4px solid var(--gold);
    padding: 18px;
    border-radius: 14px;
    margin: 22px 0;
}

.contact-panel strong {
    display: block;
    margin-bottom: 6px;
}

a {
    color: var(--blue);
}

.form {
    max-width: 560px;
    margin-top: 24px;
}

.form label {
    display: block;
    font-family: Arial, sans-serif;
    font-weight: 700;
    margin-bottom: 8px;
}

.form input {
    width: 100%;
    border: 1px solid #cbd5e1;
    border-radius: 12px;
    padding: 14px;
    font-size: 16px;
    margin-bottom: 14px;
}

.small {
    color: var(--muted);
    font-size: 14px;
}

.footer-alt {
    background: var(--navy);
    color: #cbd5e1;
    padding: 30px 0;
    margin-top: 40px;
}

.footer-grid {
    display: flex;
    justify-content: space-between;
    gap: 22px;
    align-items: flex-start;
}

.footer-grid strong {
    color: var(--white);
    font-size: 18px;
}

.footer-grid p {
    margin: 6px 0 0;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.footer-links a {
    color: #dbeafe;
    text-decoration: none;
    font-family: Arial, sans-serif;
    font-size: 14px;
}

.footer-links a:hover {
    text-decoration: underline;
}

.copyright {
    border-top: 1px solid rgba(255,255,255,0.1);
    margin-top: 22px;
    padding-top: 18px;
    font-size: 13px;
    color: #94a3b8;
}

@media (max-width: 860px) {
    .topbar-inner,
    .footer-grid {
        flex-direction: column;
        align-items: flex-start;
    }

    .hero-grid,
    .feature-list {
        grid-template-columns: 1fr;
    }

    .content-card {
        padding: 28px;
    }
}