:root {
    --page-bg: #fff;
    --page-text: #0f172a;
    --page-muted: #64748b;
    --page-line: #e9ecef;
    --page-soft: #f8f9fa;
    --page-blue: #173f78;
    --page-font: "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
* { box-sizing: border-box; }
body {
    margin: 0;
    min-height: 100vh;
    background: var(--page-bg);
    color: var(--page-text);
    font-family: var(--page-font);
    -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
.content-shell {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}
.content-header {
    min-height: 76px;
    padding: 18px 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    border-bottom: 1px solid var(--page-line);
}
.content-brand {
    display: inline-flex;
    align-items: center;
}
.content-brand img {
    display: block;
    width: 176px;
    height: auto;
    object-fit: contain;
}
.back-link {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: var(--page-muted);
    font-size: .85rem;
    font-weight: 600;
}
.back-link:hover { color: var(--page-blue); }
.back-link svg {
    width: 16px;
    height: 16px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}
.content-main {
    width: min(100% - 40px, 760px);
    margin: 0 auto;
    padding: 76px 0 84px;
    flex: 1;
}
.content-kicker {
    margin: 0 0 12px;
    color: var(--page-blue);
    font-size: .76rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
}
h1 {
    margin: 0;
    max-width: 680px;
    font-size: clamp(2rem, 5vw, 3.4rem);
    line-height: 1.06;
    letter-spacing: -.055em;
}
.content-lead {
    margin: 22px 0 44px;
    max-width: 680px;
    color: var(--page-muted);
    font-size: 1rem;
    line-height: 1.75;
}
.content-section {
    padding: 24px 0;
    border-top: 1px solid var(--page-line);
}
.content-section h2 {
    margin: 0 0 10px;
    font-size: 1rem;
    letter-spacing: -.02em;
}
.content-section p,
.content-section li {
    color: var(--page-muted);
    font-size: .91rem;
    line-height: 1.75;
}
.content-section p { margin: 0; }
.content-section ul { margin: 8px 0 0; padding-left: 20px; }
.contact-card {
    padding: 22px;
    border-radius: 18px;
    background: var(--page-soft);
}
.contact-card a { color: var(--page-blue); font-weight: 600; }
.content-footer {
    padding: 22px 24px;
    border-top: 1px solid var(--page-line);
    text-align: center;
    color: var(--page-muted);
    font-size: .76rem;
}
@media (max-width: 700px) {
    .content-header { padding: 14px 18px; min-height: 68px; }
    .content-brand img { width: 150px; height: auto; }
    .content-main { width: min(100% - 32px, 760px); padding: 50px 0 60px; }
    .content-lead { margin-bottom: 32px; }
}
