* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  min-height: 100vh;
  font-family: Arial, Helvetica, sans-serif;
  color: #2f2a25;
  background: #fff7ec;
  line-height: 1.7;
}

.page {
  width: 100%;
}

.hero {
  width: 100%;
  background: linear-gradient(180deg, #fff3dd 0%, #fff7ec 100%);
}

.hero-image {
  display: block;
  width: 100%;
  max-height: 620px;
  object-fit: cover;
  object-position: center top;
}

.content {
  width: min(92%, 820px);
  margin: 0 auto;
  padding: 42px 0 64px;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 12px;
  padding: 7px 14px;
  border-radius: 999px;
  background: #e9f2ff;
  color: #1f5fa8;
  font-size: 0.9rem;
  font-weight: 700;
}

h1 {
  margin-bottom: 24px;
  color: #184b82;
  font-size: clamp(2rem, 5vw, 3.4rem);
  line-height: 1.12;
}

p {
  margin-bottom: 20px;
  font-size: clamp(1.05rem, 2.5vw, 1.22rem);
}

p:last-child {
  margin-bottom: 0;
}

@media (min-width: 900px) {
  .hero-image {
    height: 620px;
  }

  .content {
    padding-top: 56px;
  }
}

@media (max-width: 520px) {
  .hero-image {
    max-height: 440px;
  }

  .content {
    padding: 32px 0 48px;
  }
}
