:root {
  --content-ink: #183342;
  --content-soft: #5e7380;
  --content-line: #dce6eb;
  --content-bg: #f4f8fa;
  --content-green: #078b70;
  --content-cyan: #0c8fab;
  --content-yellow: #f2b705;
}

body.content-page {
  margin: 0;
  color: var(--content-ink);
  background: var(--content-bg);
  font-family: yekan, sans-serif, Tahoma;
}

.content-page *, .content-page *::before, .content-page *::after { box-sizing: border-box; }
.content-page img { max-width: 100%; }
.content-page a { text-decoration: none; }
.content-shell { width: min(1160px, calc(100% - 40px)); margin: 0 auto; }

.content-hero {
  position: relative;
  min-height: 580px;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: #fff;
  background: #102d42;
}
.content-hero__image, .content-hero__overlay { position: absolute; inset: 0; width: 100%; height: 100%; }
.content-hero__image { object-fit: cover; object-position: center; }
.content-hero__overlay { background: linear-gradient(90deg, rgba(8,22,31,.35), rgba(8,22,31,.88) 58%, rgba(8,22,31,.96)); }
.content-hero__body { position: relative; z-index: 2; width: min(720px, 100%); padding: 128px 0 72px; }
.content-eyebrow { display: inline-flex; align-items: center; min-height: 32px; padding: 6px 11px; margin-bottom: 16px; border: 1px solid rgba(255,255,255,.25); border-radius: 5px; background: rgba(255,255,255,.1); font-size: 13px; font-weight: 700; }
.content-hero h1 { margin: 0 0 17px; color: #fff; font-size: 46px; line-height: 1.42; }
.content-hero p { margin: 0 0 25px; color: rgba(255,255,255,.86); font-size: 18px; line-height: 2; }
.content-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.content-button { display: inline-flex; align-items: center; justify-content: center; min-height: 48px; padding: 10px 18px; border: 1px solid #08a889; border-radius: 5px; color: #fff; background: #078b70; font-weight: 700; }
.content-button:hover, .content-button:focus { color: #fff; background: #056e59; }
.content-button--ghost { border-color: rgba(255,255,255,.55); background: transparent; }

.content-section { padding: 84px 0; }
.content-section--white { background: #fff; }
.content-section--dark { color: #fff; background: #102d42; }
.content-heading { max-width: 760px; margin-bottom: 36px; }
.content-heading__label { display: inline-block; margin-bottom: 10px; color: var(--content-green); font-size: 13px; font-weight: 800; }
.content-heading h2 { margin: 0 0 13px; color: var(--content-ink); font-size: 32px; line-height: 1.55; }
.content-heading p { margin: 0; color: var(--content-soft); font-size: 16px; line-height: 2; }
.content-section--dark .content-heading h2 { color: #fff; }
.content-section--dark .content-heading p { color: rgba(255,255,255,.72); }

.content-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px; }
.content-grid--four { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.content-card { min-width: 0; padding: 26px; border: 1px solid var(--content-line); border-radius: 6px; background: #fff; box-shadow: 0 14px 34px rgba(28,45,60,.07); }
.content-card__icon { display: inline-grid; place-items: center; width: 46px; height: 46px; margin-bottom: 18px; border-radius: 5px; color: #fff; background: var(--content-cyan); font-size: 23px; }
.content-card h3 { min-height: 54px; margin: 0 0 10px; color: var(--content-ink); font-size: 19px; line-height: 1.7; }
.content-card p { margin: 0; color: var(--content-soft); font-size: 14px; line-height: 2; }
.content-card--status { border-style: dashed; background: #f8fafb; }
.content-card__badge { display: inline-flex; margin-bottom: 12px; padding: 4px 8px; border-radius: 4px; color: #895f00; background: #fff1bd; font-size: 11px; font-weight: 800; }

.content-split { display: grid; grid-template-columns: minmax(0, 1fr) minmax(340px, .9fr); gap: 48px; align-items: center; }
.content-split__media { overflow: hidden; border-radius: 6px; background: #dce6eb; aspect-ratio: 4 / 3; }
.content-split__media img { width: 100%; height: 100%; object-fit: cover; }
.content-copy h2 { margin: 0 0 16px; font-size: 32px; line-height: 1.55; }
.content-copy p { color: var(--content-soft); line-height: 2.1; }
.content-list { list-style: none; padding: 0; margin: 22px 0 0; }
.content-list li { position: relative; padding: 8px 27px 8px 0; color: var(--content-soft); line-height: 1.9; }
.content-list li::before { content: "✓"; position: absolute; right: 0; color: var(--content-green); font-weight: 900; }

.content-table-wrap { overflow-x: auto; border: 1px solid var(--content-line); border-radius: 6px; background: #fff; }
.content-table { width: 100%; min-width: 720px; border-collapse: collapse; }
.content-table th, .content-table td { padding: 16px; border-bottom: 1px solid var(--content-line); text-align: right; line-height: 1.8; }
.content-table th { color: #fff; background: #183342; }
.content-table tr:last-child td { border-bottom: 0; }

.content-faq { display: grid; gap: 12px; }
.content-faq details { padding: 19px 22px; border: 1px solid var(--content-line); border-radius: 5px; background: #fff; }
.content-faq summary { cursor: pointer; color: var(--content-ink); font-weight: 800; line-height: 1.8; }
.content-faq p { margin: 13px 0 0; color: var(--content-soft); line-height: 2; }
.content-cta { display: flex; align-items: center; justify-content: space-between; gap: 28px; padding: 38px; border-radius: 6px; color: #fff; background: #102d42; }
.content-cta h2 { margin: 0 0 8px; color: #fff; font-size: 28px; }
.content-cta p { margin: 0; color: rgba(255,255,255,.72); line-height: 1.9; }

.content-footer { padding: 55px 0 0; color: rgba(255,255,255,.75); background: #0d2738; }
.content-footer__grid { display: grid; grid-template-columns: 1.3fr repeat(3, 1fr); gap: 34px; }
.content-footer img { width: 138px; margin-bottom: 14px; }
.content-footer h2 { margin: 0 0 13px; color: #fff; font-size: 16px; }
.content-footer p, .content-footer li, .content-footer a { color: rgba(255,255,255,.7); font-size: 13px; line-height: 2; }
.content-footer ul { list-style: none; padding: 0; margin: 0; }
.content-footer a:hover { color: #fff; }
.content-footer__bottom { margin-top: 38px; padding: 18px 0; border-top: 1px solid rgba(255,255,255,.12); text-align: center; }

@media (max-width: 940px) {
  .content-hero { min-height: 540px; }
  .content-hero__body { padding-top: 118px; }
  .content-hero h1 { font-size: 38px; }
  .content-grid, .content-grid--four { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .content-split { grid-template-columns: 1fr; }
  .content-footer__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 620px) {
  .content-shell { width: min(100% - 28px, 1160px); }
  .content-hero { min-height: 560px; }
  .content-hero__body { padding: 110px 0 50px; }
  .content-hero h1 { font-size: 30px; }
  .content-hero p { font-size: 15px; }
  .content-actions, .content-button { width: 100%; }
  .content-section { padding: 62px 0; }
  .content-heading h2, .content-copy h2 { font-size: 26px; }
  .content-grid, .content-grid--four, .content-footer__grid { grid-template-columns: 1fr; }
  .content-card h3 { min-height: 0; }
  .content-cta { align-items: stretch; flex-direction: column; padding: 27px 22px; }
}
