:root {
  color-scheme: light;
  font-family: Arial, Helvetica, sans-serif;
  font-synthesis: none;
  line-height: 1.5;
  color: #173543;
  background: #ffffff;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-width: 320px;
}

.content-width,
.site-header__inner {
  width: min(100% - 48px, 1060px);
  margin-inline: auto;
}

.site-header {
  border-bottom: 1px solid #e2e8e8;
}

.site-header__inner {
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand-logo {
  display: block;
  width: 174px;
  height: auto;
}

.site-header__label {
  color: #526871;
  font-size: 13px;
  font-weight: 600;
}

.intro {
  padding-block: 76px 80px;
  background: #f5f8f7;
}

.eyebrow {
  margin: 0;
  color: #c6283f;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

h1,
h2 {
  margin: 0;
  line-height: 1.15;
}

h1 {
  max-width: 800px;
  margin-top: 14px;
  font-size: clamp(36px, 4rem, 56px);
  font-weight: 700;
}

.intro__text {
  max-width: 620px;
  margin: 22px 0 0;
  color: #526871;
  font-size: 18px;
  line-height: 1.6;
}

.information {
  border-bottom: 1px solid #e2e8e8;
}

.information__layout {
  display: grid;
  grid-template-columns: minmax(210px, 0.8fr) minmax(0, 1.2fr);
  gap: 48px;
  padding-block: 48px;
}

h2 {
  font-size: 24px;
}

.information__body {
  max-width: 580px;
  color: #526871;
  font-size: 16px;
}

.information__body p {
  margin: 0;
}

.information__body p + p {
  margin-top: 10px;
}

.information__body a {
  color: #a52138;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.information__body a:hover,
.information__body a:focus-visible {
  color: #741225;
}

.company-name {
  color: #173543;
  font-size: 20px;
  font-weight: 700;
}

.contact-list {
  display: grid;
  gap: 20px;
  margin: 24px 0 0;
}

.contact-list div {
  display: grid;
  grid-template-columns: 80px minmax(0, 1fr);
  gap: 16px;
}

.contact-list dt {
  color: #173543;
  font-weight: 700;
}

.contact-list dd {
  margin: 0;
  overflow-wrap: anywhere;
}

@media (max-width: 640px) {
  .content-width,
  .site-header__inner {
    width: min(100% - 32px, 1060px);
  }

  .site-header__inner {
    min-height: 72px;
  }

  .brand-logo {
    width: 144px;
  }

  .site-header__label {
    font-size: 11px;
    text-align: right;
  }

  .intro {
    padding-block: 54px 60px;
  }

  h1 {
    font-size: 36px;
  }

  .intro__text {
    font-size: 16px;
  }

  .information__layout {
    grid-template-columns: 1fr;
    gap: 22px;
    padding-block: 36px;
  }
}
