@import url('https://fonts.googleapis.com/css2?family=PT+Sans:wght@400;700&family=Roboto+Condensed:wght@400;700&display=swap');

:root {
  --bg: #f3f6fa;
  --surface: #ffffff;
  --ink: #1b2a3a;
  --muted: #506273;
  --blue-900: #0b2f56;
  --blue-700: #184d82;
  --blue-600: #2564a0;
  --line: #d9e2ec;
  --accent-red: #b02731;
  --shadow: 0 8px 24px rgba(9, 34, 64, 0.08);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'PT Sans', 'Segoe UI', sans-serif;
  color: var(--ink);
  background: linear-gradient(180deg, #f7f9fc 0%, #f2f6fb 100%);
  line-height: 1.5;
}

.container {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  background: var(--surface);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 4px 14px rgba(15, 41, 71, 0.06);
}

.servicebar {
  background: var(--accent-red);
  color: #fff;
  font-size: 13px;
}

.servicebar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 7px 0;
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px 0;
}

.brand {
  position: relative;
  font-family: 'Roboto Condensed', 'PT Sans', sans-serif;
  font-weight: 700;
  font-size: 30px;
  line-height: 1;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--blue-900);
  padding-left: 12px;
}

.brand::before {
  content: "";
  position: absolute;
  left: 0;
  top: 2px;
  bottom: 2px;
  width: 4px;
  background: var(--accent-red);
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
}

.nav a {
  color: var(--blue-900);
  text-decoration: none;
  font-family: 'Roboto Condensed', sans-serif;
  font-size: 15px;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.02em;
  padding: 10px 12px;
  border-radius: 4px;
  border: 1px solid transparent;
}

.nav a:hover {
  border-color: #bfd0e2;
  background: #eef4fb;
}

.nav a.active {
  background: var(--blue-700);
  color: #fff;
}

.hero {
  padding: 36px 0 26px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 22px;
  align-items: stretch;
}

.hero h1 {
  margin: 0 0 12px;
  color: var(--blue-900);
  font-family: 'Roboto Condensed', sans-serif;
  font-size: clamp(34px, 5vw, 52px);
  line-height: 0.98;
  text-transform: uppercase;
}

.hero p {
  margin: 0 0 14px;
  max-width: 760px;
  color: var(--muted);
  font-size: 18px;
}

.highlight {
  color: var(--blue-600);
}

.panel {
  background: var(--surface);
  border: 1px solid var(--line);
  border-top: 4px solid var(--blue-700);
  border-radius: 6px;
  padding: 18px;
  box-shadow: var(--shadow);
}

.hero-media {
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid var(--line);
  min-height: 230px;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.badge {
  display: inline-block;
  padding: 5px 10px;
  border-radius: 4px;
  background: #e7f0fb;
  color: var(--blue-700);
  font-family: 'Roboto Condensed', sans-serif;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 12px;
}

.stat {
  background: #f1f6fc;
  border: 1px solid #dbe7f3;
  border-radius: 4px;
  padding: 11px;
  font-size: 14px;
}

.stat strong {
  display: block;
  font-family: 'Roboto Condensed', sans-serif;
  color: var(--blue-900);
  font-size: 25px;
}

.section {
  padding: 22px 0 34px;
}

.section h2 {
  margin: 0 0 14px;
  font-family: 'Roboto Condensed', sans-serif;
  color: var(--blue-900);
  font-size: clamp(30px, 3.5vw, 40px);
  text-transform: uppercase;
}

.grid-3,
.grid-2 {
  display: grid;
  gap: 14px;
}

.grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-left: 4px solid var(--blue-700);
  border-radius: 6px;
  padding: 16px;
}

.card h3 {
  margin: 0 0 8px;
  font-family: 'Roboto Condensed', sans-serif;
  font-size: 24px;
  color: var(--blue-900);
}

.card p,
.card li {
  color: var(--muted);
}

.media-card {
  padding: 0;
  overflow: hidden;
}

.media-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.media-card .media-body {
  padding: 12px 14px 14px;
}

.list {
  margin: 0;
  padding-left: 18px;
}

.cta {
  margin: 22px 0 44px;
  padding: 22px;
  border-radius: 8px;
  background: linear-gradient(180deg, var(--blue-900) 0%, #123f70 100%);
  border-top: 4px solid var(--accent-red);
  color: #fff;
}

.cta h3 {
  margin: 0 0 8px;
  font-family: 'Roboto Condensed', sans-serif;
  font-size: 31px;
}

.button {
  display: inline-block;
  margin-top: 8px;
  background: var(--accent-red);
  color: #fff;
  text-decoration: none;
  font-family: 'Roboto Condensed', sans-serif;
  font-weight: 700;
  letter-spacing: 0.02em;
  padding: 10px 16px;
  border-radius: 4px;
}

.button:hover {
  background: #8f1f28;
}

.table-wrap {
  overflow-x: auto;
}

table {
  width: 100%;
  border-collapse: collapse;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 6px;
  overflow: hidden;
}

th,
td {
  border-bottom: 1px solid var(--line);
  padding: 11px 10px;
  text-align: left;
  vertical-align: top;
}

th {
  font-family: 'Roboto Condensed', sans-serif;
  font-size: 18px;
  color: var(--blue-900);
  background: #eef4fb;
}

footer {
  background: #ebf2fa;
  border-top: 1px solid #d3e0ef;
  padding: 20px 0 30px;
  color: #445c74;
  font-size: 15px;
}

@media (max-width: 960px) {
  .hero-grid,
  .grid-3,
  .grid-2 {
    grid-template-columns: 1fr;
  }

  .hero p {
    font-size: 17px;
  }

  .stats {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 680px) {
  .topbar-inner {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }

  .brand {
    font-size: 27px;
  }

  .stats {
    grid-template-columns: 1fr;
  }

  .servicebar-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }
}
