:root {
  color: #1f2933;
  background: #f4f7f6;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
}

.hero {
  background:
    radial-gradient(circle at 18% 22%, rgba(236, 253, 245, 0.24), transparent 28%),
    linear-gradient(120deg, #14532d, #115e59);
  background-position: center;
  background-size: cover;
  color: white;
  min-height: 46vh;
  display: flex;
  align-items: end;
}

.supportHero {
  background:
    radial-gradient(circle at 18% 22%, rgba(236, 253, 245, 0.24), transparent 28%),
    linear-gradient(120deg, #0f766e, #166534);
}

.heroInner {
  width: min(1040px, 100%);
  margin: 0 auto;
  padding: 80px 24px 56px;
}

.appBadge {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  font-weight: 700;
  margin-bottom: 18px;
}

h1 {
  font-size: clamp(3rem, 8vw, 6.4rem);
  line-height: 0.95;
  margin: 0 0 18px;
}

.hero p {
  max-width: 680px;
  font-size: clamp(1.05rem, 2.6vw, 1.35rem);
  margin: 0 0 12px;
}

.updated {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.98rem;
}

.content {
  width: min(1040px, 100%);
  margin: 0 auto;
  padding: 44px 24px 64px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 32px;
  align-items: start;
}

.policy,
.summary {
  background: white;
  border: 1px solid #d9e2df;
  border-radius: 8px;
  box-shadow: 0 14px 35px rgba(17, 24, 39, 0.08);
}

.policy {
  padding: 34px;
}

.summary {
  padding: 24px;
  position: sticky;
  top: 24px;
}

h2 {
  color: #12332e;
  font-size: 1.25rem;
  margin: 32px 0 8px;
}

h2:first-child {
  margin-top: 0;
}

p {
  margin: 0 0 16px;
}

.callout,
.contact,
.summaryItem {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.callout,
.contact {
  background: #edf7f4;
  border: 1px solid #cfe5df;
  border-radius: 8px;
  color: #12332e;
  padding: 16px;
}

.callout p,
.contact p {
  margin: 0;
}

.summary h2 {
  margin-bottom: 18px;
}

.summaryItem {
  border-top: 1px solid #e5ece9;
  padding: 14px 0;
  font-weight: 650;
}

.summaryItem:first-of-type {
  border-top: 0;
  padding-top: 0;
}

.linkButton {
  display: block;
  margin-top: 12px;
  padding: 12px 14px;
  border-radius: 8px;
  background: #14532d;
  color: white;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
}

.linkButton:focus,
.linkButton:hover {
  background: #0f3f25;
}

svg {
  flex: 0 0 auto;
}

@media (max-width: 760px) {
  .hero {
    min-height: 42vh;
  }

  .content {
    grid-template-columns: 1fr;
    padding-top: 28px;
  }

  .policy {
    padding: 24px;
  }

  .summary {
    position: static;
  }
}
