: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,
.notice-card,
.guide-section,
.info-card,
.help-card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow: var(--shadow);
}

.notice-card {
  margin-top: 34px;
  padding: 28px;
  border-left: 7px solid var(--magenta);
}

.notice-card h2,
.guide-section h2,
.info-card h2,
.help-card h2,
.complete h2 {
  margin: 0 0 8px;
  font-size: 1.7rem;
}

.notice-card p,
.guide-section p,
.info-card p,
.help-card p {
  margin-top: 0;
}

.guide-section {
  padding: 28px;
  margin: 28px 0;
}

.info-card {
  padding: 24px;
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 18px;
  align-items: start;
  margin: 28px 0;
  background: #eef4ff;
}

.info-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--scc-blue);
  color: white;
  display: grid;
  place-items: center;
  font-weight: 800;
}

.step {
  background: white;
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: 0 10px 24px rgba(15, 45, 75, 0.08);
  padding: 22px;
  margin: 22px 0;
}

.step-head {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 16px;
  align-items: start;
}

.step-num {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: var(--scc-blue);
  color: white;
  font-weight: 800;
}

.step-title h3 {
  margin: 0 0 6px;
  font-size: 1.35rem;
}

.step-title p {
  margin: 6px 0;
}

.step-img {
  display: block;
  width: 100%;
  margin-top: 18px;
  border-radius: 16px;
  border: 1px solid var(--line);
  box-shadow: 0 10px 24px rgba(15, 45, 75, 0.08);
}

.callout {
  background: var(--scc-light);
  border-left: 5px solid var(--scc-blue);
  border-radius: 12px;
  padding: 14px 16px;
  margin: 12px 0;
}

.muted {
  color: var(--muted);
}

.complete {
  padding: 32px;
  margin: 42px 0 30px;
  text-align: center;
}

.complete h2 {
  font-size: 2.2rem;
}

details {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 12px;
  margin: 14px 0;
  overflow: hidden;
}

summary {
  cursor: pointer;
  font-weight: 800;
  padding: 18px 20px;
  list-style-position: inside;
}

details[open] summary {
  border-bottom: 1px solid var(--line);
  background: #f8fbff;
}

details p {
  padding: 0 20px 18px;
  margin: 0;
}

.help-card {
  padding: 24px;
  display: grid;
  grid-template-columns: 92px 1fr 240px;
  gap: 24px;
  align-items: center;
  margin: 30px 0;
}

.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;
}

ul {
  margin-top: 8px;
}

@media (max-width: 820px) {
  .hero {
    padding: 42px 0;
  }

  .step-head {
    grid-template-columns: 1fr;
  }

  .info-card {
    grid-template-columns: 1fr;
  }

  .help-card {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .help-icon {
    margin: 0 auto;
  }

  .support-button {
    justify-self: center;
  }
}
