:root {
  --blue: #005587;
  --text-blue: #005487;
  --cyan: #00a3e0;
  --heading: #2b3a42;
}

* {
  box-sizing: border-box;
}

html,
body {
  min-height: 100%;
}

body {
  margin: 0;
  background: #fff;
  color: var(--text-blue);
  font-family: "Noto Sans", Arial, sans-serif;
  line-height: 1.35;
}

a {
  color: inherit;
}

.page-shell {
  width: 100%;
  min-height: 100vh;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--cyan);
}

.hero {
  position: relative;
  height: 413px;
  overflow: hidden;
}

.hero__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(88deg, #005587 19%, rgba(0, 85, 135, 0) 100%);
}

.hero__content {
  position: relative;
  z-index: 1;
  width: min(calc(100% - 64px), 1072px);
  margin: 0 auto;
  padding: 83px 0 0;
  color: #fff;
}

.hero h1 {
  margin: 0 0 38px;
  font-size: 65px;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1;
}

.hero p {
  margin: 0;
  font-size: 39px;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.22;
}

.content {
  width: min(100%, 596px);
  margin: 0 auto;
  padding: 0 0 90px;
  text-align: center;
}

.doctor-mark {
  width: 237px;
  height: 237px;
  margin: -67px auto 39px;
  position: relative;
  z-index: 2;
  border-radius: 50%;
  background: var(--cyan);
  overflow: hidden;
}

.doctor-mark img {
  display: block;
  width: 100%;
  height: 100%;
}

.content h2 {
  margin: 0 0 39px;
  color: var(--heading);
  font-size: 24px;
  font-weight: 700;
  line-height: 1.34;
  letter-spacing: 0;
}

.copy {
  width: 596px;
  max-width: 100%;
  margin: 0 auto;
  text-align: left;
  color: var(--text-blue);
  font-size: 20px;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: 0;
}

.copy p {
  margin: 0;
}

.copy p + p {
  margin-top: 24px;
}

.footer {
  width: 543px;
  max-width: 100%;
  margin: 39px 0 0;
  text-align: left;
  color: #000;
  font-family: Inter, Arial, sans-serif;
}

.footer__logo {
  display: block;
  width: 218px;
  height: auto;
  margin: 0 0 12px;
}

.footer p {
  margin: 0;
  font-size: 10px;
  font-weight: 400;
  line-height: 1.35;
}

.footer a {
  text-decoration: underline;
}

.mobile-break {
  display: none;
}

@media (max-width: 600px) {
  .page-shell {
    min-height: 100vh;
  }

  .hero {
    height: 147px;
  }

  .hero__content {
    width: min(calc(100% - 50px), 390px);
    padding: 29px 0 0;
  }

  .hero h1 {
    margin-bottom: 21px;
    font-size: 24px;
    line-height: 1.1;
  }

  .hero p {
    font-size: 18px;
    line-height: 1.25;
  }

  .content {
    width: min(calc(100% - 50px), 390px);
    padding: 0 0 34px;
  }

  .doctor-mark {
    width: 123px;
    height: 123px;
    margin: -27px auto 22px;
  }

  .desktop-break {
    display: none;
  }

  .mobile-break {
    display: inline;
  }

  .content h2 {
    margin-bottom: 22px;
    font-size: 18px;
    line-height: 25px;
  }

  .copy {
    width: 100%;
    font-size: 16px;
    line-height: 24px;
  }

  .copy p + p {
    margin-top: 24px;
  }

  .footer {
    width: 300px;
    margin-top: 22px;
  }

  .footer__logo {
    width: 121px;
    margin-bottom: 7px;
  }

  .footer p {
    font-size: 5.52px;
    line-height: 1.35;
  }
}
