:root {
    --ink: #111827;
    --muted: #5b6472;
    --line: #e5e7eb;
    --bg: #f8fafc;
    --panel: #ffffff;
    --accent: #203a59;
    --accent-2: #b89555;
    --danger: #b91c1c;
    --success: #166534;
}

* { box-sizing: border-box; }
body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    color: var(--ink);
    background: var(--bg);
    line-height: 1.6;
}
a { color: inherit; }
.container { max-width: 1120px; margin: 0 auto; padding: 0 20px; }
.site-header {
    background: var(--panel);
    border-bottom: 1px solid var(--line);
    position: sticky;
    top: 0;
    z-index: 10;
}
.site-logo {
    max-height: 170px;
    width: auto;
    display: block;
}
.nav-wrap { display: flex; align-items: center; justify-content: space-between; min-height: 76px; gap: 20px; }
.brand { font-size: 1.45rem; font-weight: 800; text-decoration: none; color: var(--accent); letter-spacing: .02em; }
.nav { display: flex; gap: 18px; align-items: center; flex-wrap: wrap; }
.nav a { text-decoration: none; font-weight: 700; color: var(--ink); }
.button, button {
    display: inline-block;
    border: 0;
    border-radius: 999px;
    background: var(--accent);
    color: white !important;
    padding: 12px 20px;
    font-weight: 800;
    text-decoration: none;
    cursor: pointer;
}
.button.secondary { background: var(--accent-2); color: var(--ink) !important; }
.button.small { padding: 9px 16px; }
.hero {
    background: linear-gradient(135deg, rgba(32,58,89,.96), rgba(17,24,39,.92)), url('') center/cover;
    color: white;
    padding: 88px 0;
}
.hero h1 { font-size: clamp(2.2rem, 5vw, 4.4rem); line-height: 1.08; max-width: 850px; margin: 0 0 22px; }
.hero p { max-width: 760px; color: #e5e7eb; font-size: 1.2rem; }
.hero-actions { display: flex; gap: 14px; margin-top: 28px; flex-wrap: wrap; }
.section { padding: 64px 0; }
.section h2 { font-size: 2rem; margin: 0 0 18px; color: var(--accent); }
.grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.card {
    background: var(--panel);
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 26px;
    box-shadow: 0 10px 28px rgba(15,23,42,.06);
}
.card h3 { margin-top: 0; color: var(--accent); }
.states { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 18px; }
.states span { background: #eef2f7; border: 1px solid var(--line); border-radius: 999px; padding: 8px 12px; font-weight: 700; }
.page-title { background: var(--accent); color: white; padding: 50px 0; }
.page-title h1 { margin: 0; font-size: 2.8rem; }
.form-wrap { display: grid; grid-template-columns: 1fr 1.2fr; gap: 28px; align-items: start; }
form { background: var(--panel); border: 1px solid var(--line); border-radius: 18px; padding: 26px; }
label { display: block; font-weight: 800; margin: 16px 0 6px; }
input, select, textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid #cbd5e1;
    border-radius: 12px;
    font: inherit;
}
textarea { min-height: 150px; resize: vertical; }
.notice { padding: 14px 16px; border-radius: 12px; font-weight: 700; margin-bottom: 16px; }
.notice.success { background: #dcfce7; color: var(--success); border: 1px solid #86efac; }
.notice.error { background: #fee2e2; color: var(--danger); border: 1px solid #fca5a5; }
.site-footer { background: #111827; color: #e5e7eb; padding: 38px 0; }
.footer-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
@media (max-width: 800px) {
    .grid, .form-wrap, .footer-grid { grid-template-columns: 1fr; }
    .nav-wrap { align-items: flex-start; flex-direction: column; padding-top: 16px; padding-bottom: 16px; }
}
