﻿:root {
  --ink: #12202f;
  --muted: #536274;
  --brand: #176b87;
  --brand-dark: #0d4155;
  --accent: #c89b3c;
  --surface: #f5f7f8;
  --white: #ffffff;
  --line: #dde5ea;
}
* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--ink);
  line-height: 1.6;
  background: var(--white);
}
a { color: inherit; text-decoration: none; }
.container { width: min(1120px, calc(100% - 32px)); margin: 0 auto; }
.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(255,255,255,.96);
  border-bottom: 1px solid var(--line);
}
.nav-wrap { display: flex; align-items: center; gap: 22px; min-height: 74px; }
.brand { display: grid; line-height: 1.1; margin-right: auto; }
.brand span { font-size: 22px; font-weight: 800; color: var(--brand-dark); }
.brand small { color: var(--muted); font-size: 12px; margin-top: 4px; }
.nav { display: flex; gap: 18px; font-weight: 700; color: var(--ink); }
.nav a:hover { color: var(--brand); }
.header-call, .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 11px 18px;
  border-radius: 6px;
  font-weight: 800;
}
.header-call, .btn.primary { background: var(--brand); color: var(--white); }
.btn.secondary { border: 1px solid var(--brand); color: var(--brand-dark); background: var(--white); }
.nav-toggle { display: none; border: 1px solid var(--line); background: var(--white); border-radius: 6px; padding: 8px 12px; font-weight: 800; }
.hero {
  background: linear-gradient(110deg, #eef6f7 0%, #ffffff 58%, #f7f2e7 100%);
  padding: 84px 0;
}
.hero-grid { display: grid; grid-template-columns: 1.4fr .8fr; gap: 42px; align-items: center; }
.eyebrow { color: var(--brand); font-weight: 800; text-transform: uppercase; letter-spacing: 0; font-size: 14px; }
h1 { font-size: clamp(36px, 5vw, 62px); line-height: 1.05; margin: 10px 0 18px; letter-spacing: 0; }
h2 { font-size: 32px; line-height: 1.2; margin: 0 0 16px; letter-spacing: 0; }
h3 { font-size: 21px; line-height: 1.25; margin: 0 0 10px; letter-spacing: 0; }
p { margin: 0 0 16px; color: var(--muted); }
.hero-text { font-size: 19px; max-width: 760px; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 28px; }
.hero-panel, .contact-box, .contact-form {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 28px;
  box-shadow: 0 18px 45px rgba(18,32,47,.08);
}
.note { border-top: 1px solid var(--line); padding-top: 16px; margin-top: 12px; }
.section { padding: 70px 0; }
.section.alt { background: var(--surface); }
.two-col, .contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 42px; }
.check-list { margin: 0; padding: 0; list-style: none; display: grid; gap: 12px; }
.check-list li { padding-left: 28px; position: relative; color: var(--ink); }
.check-list li::before { content: "\2713"; position: absolute; left: 0; top: 0; color: var(--brand); font-weight: 900; }
.section-head { max-width: 720px; margin-bottom: 28px; }
.cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.card {
  display: block;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 22px;
  min-height: 190px;
}
.card:hover { border-color: var(--brand); transform: translateY(-2px); transition: .2s ease; }
.page-hero { background: #eef6f7; padding: 68px 0; }
.page-hero p { max-width: 760px; font-size: 18px; }
.content { max-width: 860px; }
.content h2 { margin-top: 34px; }
.faq { display: grid; gap: 12px; }
details {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 16px 18px;
}
summary { cursor: pointer; font-weight: 800; color: var(--ink); }
details p { margin-top: 12px; margin-bottom: 0; }
.center { text-align: center; margin-top: 28px; }
.contact-form { display: grid; gap: 14px; }
label { display: grid; gap: 6px; font-weight: 800; color: var(--ink); }
input, select, textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 6px;
  min-height: 44px;
  padding: 10px 12px;
  font: inherit;
}
textarea { resize: vertical; }
button.btn { border: 0; cursor: pointer; }
.site-footer {
  background: #155985;
  color: var(--white);
  padding-top: 30px;
}
.site-footer p,
.site-footer a {
  color: var(--white);
}
.footer-main {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1.1fr 1.1fr;
  gap: 28px;
}
.footer-col h2 {
  border-bottom: 1px solid rgba(255,255,255,.75);
  color: var(--white);
  font-size: 18px;
  margin-bottom: 14px;
  padding-bottom: 12px;
  text-transform: uppercase;
}
.footer-col p {
  font-size: 14px;
  margin-bottom: 11px;
}
.footer-about p {
  font-weight: 700;
}
.footer-contact-line {
  color: var(--white);
}
.footer-links {
  display: grid;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.footer-links a {
  font-size: 14px;
  font-weight: 700;
}
.footer-dashed li {
  border-bottom: 1px dashed rgba(255,255,255,.55);
  padding-bottom: 11px;
}
.social-title {
  margin-top: 24px;
}
.social-links {
  display: flex;
  gap: 8px;
}
.social-links a {
  align-items: center;
  background: #ffffff;
  border-radius: 999px;
  color: #155985;
  display: inline-flex;
  font-size: 13px;
  font-weight: 900;
  height: 28px;
  justify-content: center;
  text-transform: uppercase;
  width: 28px;
}
.footer-keywords {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(185px, 1fr));
  align-items: start;
  column-gap: 28px;
  row-gap: 22px;
  padding: 34px 0 38px;
}
.footer-keywords ul {
  display: grid;
  gap: 9px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.footer-keywords a {
  font-size: 14px;
  font-weight: 700;
}
.footer-bottom {
  align-items: center;
  background: #f2f2f2;
  color: #777;
  display: flex;
  justify-content: center;
  min-height: 48px;
  padding: 10px 16px;
  position: relative;
}
.footer-bottom p {
  color: #777;
  font-size: 12px;
  margin: 0;
}
.direction-btn {
  background: #dedede;
  border-radius: 999px;
  color: #222 !important;
  font-size: 14px;
  font-weight: 700;
  padding: 8px 12px;
  position: absolute;
  right: 14px;
}
.mobile-action-bar {
  display: none;
}
@media (max-width: 900px) {
  .nav-toggle { display: inline-flex; }
  .nav { display: none; position: absolute; top: 74px; left: 0; right: 0; background: var(--white); border-bottom: 1px solid var(--line); padding: 16px; flex-direction: column; }
  .nav.open { display: flex; }
  .header-call { display: none; }
  .hero-grid, .two-col, .contact-grid, .footer-main { grid-template-columns: 1fr; }
  .cards { grid-template-columns: repeat(2, 1fr); }
  .footer-keywords { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .hero { padding: 56px 0; }
}
@media (max-width: 560px) {
  body {
    padding-bottom: 92px;
  }
  h1 { font-size: 34px; }
  h2 { font-size: 26px; }
  .cards { grid-template-columns: 1fr; }
  .hero-actions { display: grid; }
  .section { padding: 52px 0; }
  .footer-keywords { grid-template-columns: 1fr; }
  .footer-bottom {
    align-items: center;
    flex-direction: column;
    gap: 10px;
  }
  .direction-btn {
    position: static;
  }
  .mobile-action-bar {
    align-items: stretch;
    background: #155985;
    border-top: 5px solid #74a84a;
    bottom: 0;
    box-shadow: 0 -8px 22px rgba(18,32,47,.18);
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    left: 0;
    min-height: 86px;
    padding: 10px 0 12px;
    position: fixed;
    right: 0;
    z-index: 1000;
  }
  .mobile-action-bar a {
    align-items: center;
    color: #ffffff;
    display: flex;
    flex-direction: column;
    font-size: 13px;
    font-weight: 700;
    gap: 5px;
    justify-content: center;
    line-height: 1.1;
    text-align: center;
    text-decoration: none;
  }
  .mobile-action-bar svg {
    color: #ffffff;
    display: block;
    height: 28px;
    width: 28px;
  }
  .mobile-action-bar span {
    color: #ffffff;
    white-space: nowrap;
  }
}

.related-links { display: flex; flex-wrap: wrap; gap: 10px; margin: 8px 0 26px; }
.related-links a { border: 1px solid var(--line); border-radius: 999px; color: var(--brand-dark); font-weight: 800; padding: 8px 12px; }
.related-links a:hover { border-color: var(--brand); color: var(--brand); }


.site-footer .social-links img { display: block; height: 28px; width: 28px; }
.site-footer .important-links { display: grid; gap: 6px; list-style: none; margin: 10px 0 0; padding: 0; }
.site-footer .important-links a { color: #fff; font-size: 14px; font-weight: 700; }
.site-footer .social-links a { overflow: hidden; }



.info-table {
  border-collapse: collapse;
  margin: 18px 0 28px;
  width: 100%;
}
.info-table th,
.info-table td {
  border: 1px solid var(--line);
  padding: 12px 14px;
  text-align: left;
  vertical-align: top;
}
.info-table th {
  background: var(--surface);
  color: var(--ink);
  font-weight: 800;
}
.info-table td {
  color: var(--muted);
}
@media (max-width: 560px) {
  .info-table { display: block; overflow-x: auto; white-space: nowrap; }
}



