:root {
  --green: #183d2e;
  --green-dark: #153629;
  --red: #a4152a;
  --light: #e6e6e6;
  --text: #161616;
  --max: 980px;
}

* { box-sizing: border-box; }

html { font-size: 16px; }

body {
  margin: 0;
  font-family: Georgia, 'Times New Roman', Times, serif;
  line-height: 1.45;
  color: var(--text);
  background: #fff;
}

a { color: inherit; }

.page {
  max-width: var(--max);
  margin: 0 auto;
  background: #fff;
  min-height: 100vh;
}

.site-header {
  background: #fff;
}

.home-banner {
  display: block;
  line-height: 0;
}

.home-banner img,
.hero img {
  display: block;
  width: 100%;
  height: auto;
}

.hero {
  overflow: hidden;
  background: #ddd;
}

.intro {
  text-align: center;
  background: var(--light);
  padding: 24px 20px 28px;
}

.intro h1 {
  margin: 0 0 8px;
  font-size: clamp(1.7rem, 4vw, 2.35rem);
  line-height: 1.15;
  font-weight: 400;
  letter-spacing: .01em;
}

.intro p {
  margin: 0;
  font-size: clamp(1rem, 2vw, 1.15rem);
}

.content {
  padding: 46px clamp(20px, 7.4vw, 73px) 38px;
}

.notice p {
  margin: 0 0 8px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1rem;
}

.notice p:first-child { font-weight: 700; }
.notice p.spacer { margin-top: 26px; }

.info-grid {
  border-top: 3px solid var(--green);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  padding: 38px clamp(20px, 7.4vw, 73px) 38px;
}

.info-box h2,
.legal h1,
.legal h2 {
  color: var(--red);
  font-weight: 400;
  line-height: 1.2;
}

.info-box h2 {
  margin: 0 0 8px;
  font-size: 1.22rem;
}

.info-box p {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1rem;
  line-height: 1.5;
}

.site-footer {
  background: var(--green);
  color: #fff;
  padding: 40px clamp(20px, 7.4vw, 73px) 24px;
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 42px;
  align-items: end;
}

.site-footer h2 {
  margin: 0 0 8px;
  font-size: 1.1rem;
  line-height: 1.2;
}

.site-footer p {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  font-size: .98rem;
  line-height: 1.25;
}

.site-footer a {
  font-family: Arial, Helvetica, sans-serif;
  text-decoration: none;
}

.site-footer a:hover,
.site-footer a:focus {
  text-decoration: underline;
}

.footer-link {
  white-space: nowrap;
}

.legal {
  padding: 44px clamp(20px, 7.4vw, 73px) 56px;
  font-family: Arial, Helvetica, sans-serif;
}

.legal h1 {
  margin: 0 0 24px;
  font-family: Georgia, 'Times New Roman', Times, serif;
  font-size: clamp(1.8rem, 4vw, 2.4rem);
}

.legal h2 {
  margin: 28px 0 8px;
  font-family: Georgia, 'Times New Roman', Times, serif;
  font-size: 1.35rem;
}

.legal p,
.legal li {
  max-width: 760px;
  font-size: 1rem;
}

.legal p { margin: 0 0 12px; }
.legal ul { margin: 0 0 14px 1.2em; padding: 0; }

.back-link {
  display: inline-block;
  margin-top: 20px;
  color: var(--green);
  font-weight: 700;
}

@media (max-width: 760px) {
  .info-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .site-footer {
    grid-template-columns: 1fr;
    gap: 20px;
    align-items: start;
  }
}

@media (max-width: 520px) {
  .content { padding-top: 34px; }
  .intro { padding: 20px 16px 23px; }
  .notice p,
  .info-box p,
  .site-footer p,
  .site-footer a,
  .legal p,
  .legal li { font-size: .96rem; }
}
