:root {
  --scc-blue: #005eb8;
  --scc-dark: #15324a;
  --scc-light: #eef6ff;
  --magenta: #e6007e;
  --ink: #17212b;
  --muted: #4b5d78;
  --line: #d8e2ec;
  --panel: #ffffff;
  --tip: #e9f7ef;
  --tip-border: #2e8b57;
  --warning: #fff4df;
  --warning-border: #d9822b;
  --shadow: 0 16px 40px rgba(15, 45, 75, 0.12);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--ink);
  background: #f5f8fb;
  line-height: 1.6;
}

.wrap {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.hero {
  background: linear-gradient(135deg, var(--scc-blue), var(--scc-dark));
  color: white;
  padding: 50px 0 48px;
}

.back-link {
  display: inline-block;
  color: #ffffff;
  text-decoration: none;
  font-weight: 700;
  margin-bottom: 24px;
  opacity: 0.95;
}

.back-link:hover {
  text-decoration: underline;
}

.eyebrow {
  margin: 0 0 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.82rem;
  opacity: 0.9;
}

h1 {
  margin: 0;
  font-size: clamp(2.4rem, 5vw, 4rem);
  line-height: 1.05;
  max-width: 950px;
}

.lead {
  max-width: 760px;
  font-size: 1.15rem;
  opacity: 0.95;
  margin: 22px 0;
}

.meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.meta span {
  background: rgba(255,255,255,0.16);
  border: 1px solid rgba(255,255,255,0.28);
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 0.95rem;
}

.magenta-line {
  height: 7px;
  background: var(--magenta);
}

.card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow: var(--shadow);
}

.overview {
  margin-top: 34px;
  padding: 28px;
}

.overview h2 {
  margin-top: 0;
}

.overview-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-bottom: 24px;
}

.overview-item {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--ink);
  border: 1px solid var(--line);
  background: var(--scc-light);
  padding: 18px;
  border-radius: 16px;
}

.overview-item strong {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  color: white;
  background: var(--scc-blue);
}

.section-block {
  margin: 42px 0;
}

.section-header {
  background: var(--scc-dark);
  color: white;
  padding: 30px;
  border-radius: 24px;
  margin-bottom: 22px;
}

.section-header p {
  margin: 0 0 6px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.8rem;
  opacity: 0.8;
}

.section-header h2 {
  margin: 0 0 8px;
  font-size: clamp(1.8rem, 4vw, 3rem);
  line-height: 1.1;
}

.section-header span {
  color: rgba(255,255,255,0.88);
}

.callout {
  border-left: 6px solid;
  padding: 18px 20px;
  border-radius: 16px;
  margin: 18px 0;
}

.callout h3 {
  margin-top: 0;
}

.tip {
  background: var(--tip);
  border-color: var(--tip-border);
}

.warning {
  background: var(--warning);
  border-color: var(--warning-border);
}

.info-card {
  display: flex;
  gap: 20px;
  align-items: center;

  background: #eaf3ff;
  border-left: 6px solid var(--scc-blue);
  border-radius: 16px;

  padding: 20px;
  margin: 24px 0;
}

.info-icon {
  width: 56px;
  height: 56px;

  border-radius: 50%;
  background: var(--scc-blue);
  color: white;

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 1.4rem;
  flex-shrink: 0;
}

.info-card h3 {
  margin: 0 0 8px 0;
}

.info-card p {
  margin: 0 0 8px 0;
}

.info-card p:last-child {
  margin-bottom: 0;
}

.step {
  background: white;
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow: 0 10px 24px rgba(15, 45, 75, 0.08);
  padding: 22px;
  margin: 22px 0;
  display: grid;
  grid-template-columns: 0.9fr 1.4fr;
  gap: 24px;
  align-items: start;
}

.step-number {
  display: inline-block;
  background: var(--scc-blue);
  color: white;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.9rem;
  margin-bottom: 10px;
}

.step h3 {
  margin: 0 0 10px;
  font-size: 1.45rem;
}

.step img {
  width: 100%;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: #e8edf2;
  min-height: 260px;
  object-fit: cover;
}

.complete {
  padding: 32px;
  margin: 48px 0 30px;
  text-align: center;
}

.complete h2 {
  font-size: 2.2rem;
  margin-top: 0;
}

.help-card {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 24px;
  display: grid;
  grid-template-columns: 92px 1fr 240px;
  gap: 24px;
  align-items: center;
  margin: 30px 0;
  box-shadow: 0 10px 24px rgba(15,45,75,0.08);
}

.help-card h2 {
  margin: 0 0 8px;
  font-size: 1.7rem;
}

.help-card p {
  margin: 0;
  color: var(--ink);
}

.help-icon {
  width: 82px;
  height: 82px;
  border-radius: 18px;
  background: #eaf3ff;
  display: grid;
  place-items: center;
  font-size: 2.4rem;
}

.support-button {
  display: inline-block;
  background: var(--scc-blue);
  color: #ffffff;
  text-decoration: none;
  padding: 14px 22px;
  border-radius: 8px;
  font-weight: 700;
  text-align: center;
  white-space: nowrap;
  justify-self: end;
}

.support-button:hover {
  opacity: 0.9;
}

footer {
  background: var(--scc-dark);
  color: white;
  text-align: center;
  padding: 22px;
  font-size: 0.9rem;
}

footer p {
  margin: 0;
}

@media (max-width: 820px) {
  .overview-grid {
    grid-template-columns: 1fr;
  }

  .step {
    grid-template-columns: 1fr;
  }

  .hero {
    padding: 42px 0;
  }

  .help-card {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .help-icon {
    margin: 0 auto;
  }

  .support-button {
    justify-self: center;
  }
}
