.content-page {
  min-height: 70vh;
  background:
    linear-gradient(
      180deg,
      #f7f9fc 0%,
      #f2f5f8 100%
    );
}

.content-hero {
  padding: 32px 0 36px;
  border-bottom: 1px solid #e1e8ef;
  background:
    radial-gradient(
      circle at 88% 10%,
      rgba(234, 13, 13, .07),
      transparent 25%
    ),
    #fff;
}

.content-hero h1 {
  max-width: 900px;
  margin: 11px 0 10px;
  color: #071f39;
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1.04;
  letter-spacing: -.045em;
}

.content-hero p {
  max-width: 780px;
  margin: 0;
  color: #68788d;
  font-size: 15px;
  line-height: 1.65;
}

.content-eyebrow {
  display: inline-flex;
  color: #a66c00;
  font-size: 10px;
  font-weight: 950;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.content-section {
  padding: 30px 0 50px;
}

.content-panel {
  margin-bottom: 22px;
  padding: 30px;
  border: 1px solid #dce5ee;
  border-radius: 23px;
  background: #fff;
  box-shadow:
    0 16px 42px rgba(15, 39, 67, .055);
}

.content-panel h2 {
  margin: 7px 0 12px;
  color: #071f39;
  font-size: 28px;
  line-height: 1.15;
  letter-spacing: -.035em;
}

.contacts-grid {
  display: grid;
  grid-template-columns:
    repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 22px;
}

.contact-card {
  min-width: 0;
  min-height: 190px;
  display: flex;
  flex-direction: column;
  padding: 23px;
  border: 1px solid #dce5ee;
  border-radius: 20px;
  background: #fff;
  box-shadow:
    0 13px 32px rgba(15, 39, 67, .05);
}

.contact-card > span {
  margin-bottom: 15px;
  color: #8491a3;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.contact-card a,
.contact-card strong {
  margin-bottom: 7px;
  color: #0b3158;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.35;
}

.contact-card a:hover {
  color: #ea0d0d;
}

.contact-card p {
  margin: auto 0 0;
  padding-top: 13px;
  color: #718096;
  font-size: 12px;
  line-height: 1.55;
}

.content-two-columns {
  display: grid;
  grid-template-columns:
    minmax(0, 1.25fr)
    minmax(320px, .75fr);
  gap: 22px;
}

.company-details {
  margin: 20px 0 0;
}

.company-details > div {
  display: grid;
  grid-template-columns:
    minmax(150px, .65fr)
    minmax(0, 1.35fr);
  gap: 20px;
  padding: 12px 0;
  border-bottom: 1px solid #e8edf2;
}

.company-details > div:last-child {
  border-bottom: 0;
}

.company-details dt,
.company-details dd {
  margin: 0;
  font-size: 13px;
  line-height: 1.5;
}

.company-details dt {
  color: #8491a3;
}

.company-details dd {
  color: #172b42;
  font-weight: 800;
}

.contact-action {
  color: #fff;
  background:
    radial-gradient(
      circle at 90% 5%,
      rgba(255, 207, 36, .22),
      transparent 29%
    ),
    linear-gradient(
      135deg,
      #061b30,
      #0b3158
    );
}

.contact-action .content-eyebrow {
  color: #ffdf67;
}

.contact-action h2 {
  color: #fff;
}

.contact-action p {
  color: #c8d7e5;
  line-height: 1.65;
}

.contact-action__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.content-section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 25px;
  margin: 32px 0 18px;
}

.content-section-head h2 {
  margin: 7px 0;
  color: #071f39;
  font-size: 30px;
  letter-spacing: -.035em;
}

.content-section-head p {
  margin: 0;
  color: #718096;
  font-size: 13px;
}

.document-grid {
  display: grid;
  grid-template-columns:
    repeat(3, minmax(0, 1fr));
  gap: 14px;
}

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

.document-card {
  min-width: 0;
  min-height: 210px;
  display: flex;
  flex-direction: column;
  padding: 22px;
  border: 1px solid #dce5ee;
  border-radius: 19px;
  background:
    linear-gradient(
      180deg,
      #fff,
      #f8fafc
    );
  box-shadow:
    0 12px 30px rgba(15, 39, 67, .045);
  transition:
    transform .18s ease,
    border-color .18s ease,
    box-shadow .18s ease;
}

.document-card:hover {
  transform: translateY(-3px);
  border-color: #b9c8d7;
  box-shadow:
    0 18px 38px rgba(15, 39, 67, .09);
}

.document-card > span {
  color: #a66c00;
  font-size: 9px;
  font-weight: 950;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.document-card strong {
  margin-top: 12px;
  color: #0b3158;
  font-size: 17px;
  line-height: 1.35;
}

.document-card p {
  margin: 10px 0;
  color: #718096;
  font-size: 12px;
  line-height: 1.5;
}

.document-card b {
  margin-top: auto;
  padding-top: 17px;
  color: #ea0d0d;
  font-size: 12px;
}

.content-empty {
  grid-column: 1 / -1;
  padding: 25px;
  border: 1px dashed #cbd7e2;
  border-radius: 18px;
  background: #fff;
  color: #718096;
}

.legal-content {
  color: #34475d;
  font-size: 14px;
  line-height: 1.72;
}

.legal-content h2 {
  margin-top: 31px;
  margin-bottom: 12px;
  font-size: 25px;
}

.legal-content h2:first-child {
  margin-top: 0;
}

.legal-content h3 {
  margin: 22px 0 8px;
  color: #0b3158;
  font-size: 18px;
}

.legal-content p,
.legal-content ul,
.legal-content ol {
  margin-top: 0;
  margin-bottom: 15px;
}

.legal-content li + li {
  margin-top: 6px;
}

.legal-content a {
  color: #d90b0b;
  text-decoration: underline;
  text-underline-offset: 3px;
}

@media (max-width: 1050px) {
  .contacts-grid {
    grid-template-columns:
      repeat(2, minmax(0, 1fr));
  }

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

@media (max-width: 760px) {
  .content-two-columns {
    grid-template-columns: 1fr;
  }

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

  .content-panel {
    padding: 22px 18px;
  }
}

@media (max-width: 540px) {
  .content-hero {
    padding: 22px 0 27px;
  }

  .content-hero h1 {
    font-size: 34px;
  }

  .contacts-grid,
  .document-grid,
  .document-grid--all {
    grid-template-columns: 1fr;
  }

  .contact-card {
    min-height: 165px;
  }

  .company-details > div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .content-section-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .content-section-head .btn {
    width: 100%;
  }
}
