<style>
:root {
  /* Ваши цвета из логотипа */
  --blue-light: #73A8D4;
  --blue-dark: #006B94;

  /* Производные оттенки */
  --blue-dark-dark: #004f6e;
  --blue-light-light: #b3d9f0;
  --blue-bg: #f0f7fb;
  --blue-paper: #f7fbff;
  --blue-paper-2: #eef6fc;

  /* Нейтральные */
  --bg: #f5f7f9;
  --text: #1f2a36;
  --muted: #5b6b7a;
  --line: #cbd6e0;
  --line-2: #a8b8c6;

  /* Тени и рамки */
  --shadow:
    0 0 0 1px rgba(0, 107, 148, 0.25),
    0 8px 20px rgba(0, 107, 148, 0.15);
}

* {
  box-sizing: border-box;
}

@font-face {
  font-family: 'Microsoft YaHei';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(./SimSun.ttf) format('ttf');
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Microsoft YaHei, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top, rgba(255,255,255,0.7), transparent 35%),
    linear-gradient(180deg, #f7fbff 0%, #eef4f8 100%);
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
}

.wrap {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.page-frame {
  border-left: 6px solid var(--blue-dark);
  border-right: 6px solid var(--blue-dark);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.22), rgba(255,255,255,0)),
    repeating-linear-gradient(
      90deg,
      rgba(255,255,255,0.08) 0,
      rgba(255,255,255,0.08) 1px,
      transparent 1px,
      transparent 24px
    );
}

/* =========================== */
/* Верхняя полоса (top strip)  */
/* =========================== */
.top-strip {
  background: linear-gradient(180deg, var(--blue-dark), var(--blue-dark-dark));
  color: #006B94;
  border-bottom: 3px solid var(--blue-light);
  font-size: 13px;
}

.top-strip__inner {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 8px 0;
  align-items: center;
}

.top-strip__left,
.top-strip__right {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.badge {
  display: inline-block;
  padding: 3px 8px;
  background: var(--blue-light);
  color: #003a52;
  font-weight: 700;
  border-radius: 2px;
}

/* =========================== */
/* Header                      */
/* =========================== */
.header {
  background:
    linear-gradient(180deg, #f7fbff, #eef4f8);
  border-bottom: 4px solid var(--blue-dark);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.8);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 16px 0;
}

.logo {
  display: flex;
  align-items: center;
  min-width: 180px;
}

.logo img {
  width: auto;
  height: 64px;
  object-fit: contain;
  border: 3px solid var(--blue-light);
  box-shadow: var(--shadow);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  flex-wrap: wrap;
}

.nav a {
  text-decoration: none;
  font-weight: 700;
  color: #003a52;
  padding: 10px 14px;
  background: linear-gradient(180deg, #f7fbff, #e6f2fb);
  border: 1px solid var(--blue-light);
  box-shadow: 0 2px 0 rgba(0, 107, 148, 0.15);
  text-transform: capitalize;
}

.nav a:hover {
  background: linear-gradient(180deg, #fbfdff, #eef6fc);
  color: var(--blue-dark);
}

/* =========================== */
/* Hero                        */
/* =========================== */
.hero {
  padding: 24px 0 10px;
}

.hero__inner {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(280px, 1fr);
  gap: 24px;
  align-items: start;
}

.hero__content {
  background: linear-gradient(180deg, var(--blue-paper), var(--blue-paper-2));
  border: 1px solid var(--line-2);
  box-shadow: var(--shadow);
  padding: 24px;
}

.hero__image {
  margin-top: 18px;
  width: 100%;
  height: auto;
  border: 2px solid var(--blue-light);
  box-shadow: var(--shadow);
  background: #fff;
}

.hero__kicker {
  margin: 0 0 10px;
  color: var(--blue-dark);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1, h2, h3 {
  margin: 0 0 14px;
  font-family: Microsoft YaHei, sans-serif;
  color: var(--blue-dark);
}

h1 {
  font-size: 40px;
  line-height: 1.15;
  color: #006B94;
}

h2 {
  font-size: 28px;
  line-height: 1.2;
  border-bottom: 2px solid var(--blue-light);
  padding-bottom: 8px;
  margin-bottom: 18px;
  text-transform: uppercase;
}

h3 {
  font-size: 22px;
  line-height: 1.2;
}

.hero__text,
.section-lead,
.content-box p,
.adv-item,
.contact-box p,
.card li {
  font-size: 16px;
  line-height: 1.65;
}

.hero__links {
  display: flex;
  gap: 12px;
  margin-top: 20px;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  padding: 12px 18px;
  text-decoration: none;
  font-weight: 700;
  border: 1px solid var(--blue-dark);
  box-shadow: 0 2px 0 rgba(0, 107, 148, 0.15);
}

.btn--primary {
  background: linear-gradient(180deg, var(--blue-dark), var(--blue-dark-dark));
  color: #006B94;
}

.btn--ghost {
  background: linear-gradient(180deg, #f7fbff, #e6f2fb);
  color: var(--blue-dark);
}

.hero__panel .panel {
  background:
    linear-gradient(180deg, #fbfdff, #eef4f8);
  border: 1px solid var(--line-2);
  box-shadow: var(--shadow);
  padding: 18px;
}

.panel--blue {
  position: relative;
}

.panel--blue::before {
  content: "";
  position: absolute;
  inset: 10px;
  border: 1px dashed rgba(0, 107, 148, 0.35);
  pointer-events: none;
}

.panel__title {
  font-weight: 700;
  color: var(--blue-dark);
  margin-bottom: 10px;
  position: relative;
  z-index: 1;
}

.mini-list,
.check-list,
.bullet-columns,
.cards ul {
  margin: 0;
  padding-left: 20px;
}

.mini-list li,
.check-list li,
.bullet-columns li,
.cards li {
  margin: 0 0 8px;
}

/* =========================== */
/* Sections                    */
/* =========================== */
.section {
  padding: 28px 0;
}

.section--light {
  background: rgba(255,255,255,0.18);
  border-top: 1px solid rgba(0, 107, 148, 0.15);
  border-bottom: 1px solid rgba(0, 107, 148, 0.15);
}

.content-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 24px;
}

.content-box,
.card,
.contact-box,
.adv-item {
  background: linear-gradient(180deg, #DFEEF6, #eef4f8);
  border: 1px solid var(--line-2);
  box-shadow: var(--shadow);
  padding: 20px;
}

.content-box--accent {
  background:
    linear-gradient(180deg, #f0f7fb, #e1eef9);
}

.content-box--center {
  text-align: center;
}

.section-lead {
  max-width: 980px;
  margin: 0 0 18px;
}

.cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.card h3 {
  font-size: 20px;
  margin-bottom: 12px;
}

.card ul {
  padding-left: 18px;
}

.card-image {
  width: 100%;
  height: auto;
  margin-bottom: 12px;
  border: 2px solid var(--blue-light);
  box-shadow: var(--shadow);
  background: #fff;
}

.section-image {
  width: 100%;
  height: auto;
  margin-top: 18px;
  border: 2px solid var(--blue-light);
  box-shadow: var(--shadow);
  background: #fff;
}

.chip-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.chip-grid span {
  display: inline-block;
  padding: 10px 14px;
  border: 1px solid var(--blue-dark);
  background: linear-gradient(180deg, #f7fbff, #e6f2fb);
  color: var(--blue-dark);
  font-weight: 700;
  box-shadow: 0 2px 0 rgba(0, 107, 148, 0.1);
}

.adv-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.adv-item {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.adv-image {
  width: 100%;
  height: auto;
  border: 2px solid var(--blue-light);
  box-shadow: var(--shadow);
  background: #fff;
}

.adv-item strong {
  color: var(--blue-dark);
}

.contact-box {
  text-align: center;
}

.contact-email a {
  display: inline-block;
  font-size: 22px;
  font-weight: 700;
  color: var(--blue-dark);
  text-decoration: none;
  border-bottom: 2px solid currentColor;
  padding-bottom: 2px;
}

/* =========================== */
/* Footer                      */
/* =========================== */
.footer {
  background: linear-gradient(180deg, var(--blue-dark), var(--blue-dark-dark));
  color: #006B94;
  border-top: 4px solid var(--blue-light);
}

.footer__inner {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 0;
  flex-wrap: wrap;
}

.footer a {
  color: #006B94;
  text-decoration: none;
}

/* =========================== */
/* Адаптив                     */
/* =========================== */
@media (max-width: 980px) {
  .wrap {
    width: min(100%, calc(100% - 40px));
  }

  .hero__inner,
  .content-grid,
  .cards,
  .adv-grid {
    grid-template-columns: 1fr;
  }

  .header__inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .nav {
    justify-content: flex-start;
  }

  h1 {
    font-size: 32px;
  }

  .logo img {
    height: 56px;
  }
}

@media (max-width: 640px) {
  .wrap {
    width: min(100%, calc(100% - 24px));
  }

  .top-strip__inner,
  .footer__inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .top-strip {
    font-size: 12px;
  }

  .hero__content,
  .content-box,
  .card,
  .contact-box,
  .adv-item,
  .hero__panel .panel {
    padding: 16px;
  }

  h1 {
    font-size: 26px;
  }

  h2 {
    font-size: 22px;
  }

  h3 {
    font-size: 18px;
  }

  .nav a {
    padding: 8px 10px;
    font-size: 13px;
  }
}

</style>