:root {
  --help-bg: #f5f7fb;
  --help-panel: #ffffff;
  --help-text: #1f2937;
  --help-muted: #64748b;
  --help-line: #dbe3ef;
  --help-primary: #215c88;
  --help-primary-dark: #164766;
  --help-accent: #f5b841;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  color: var(--help-text);
  background: var(--help-bg);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.55;
  overflow-x: hidden;
}

a {
  color: var(--help-primary);
}

.help-shell {
  width: 100%;
  max-width: 980px;
  margin: 0 auto;
  padding: 18px 14px 42px;
}

.help-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 0 12px;
}

.help-brand {
  display: inline-block;
  color: var(--help-primary-dark);
  font-weight: 700;
}

.help-top-link {
  color: var(--help-muted);
  font-size: 14px;
  font-weight: 700;
}

.help-hero,
.help-panel,
.help-card,
.help-trust {
  background: var(--help-panel);
  border: 1px solid var(--help-line);
  border-radius: 8px;
}

.help-hero {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
  padding: 22px 18px;
}

.help-kicker {
  display: inline-block;
  margin-bottom: 8px;
  color: var(--help-primary);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.help-hero h1,
.help-page-title {
  margin: 0 0 10px;
  font-size: 28px;
  font-weight: 800;
}

.help-hero p,
.help-lead {
  margin: 0;
  color: var(--help-muted);
  font-size: 16px;
  overflow-wrap: anywhere;
}

.help-hero-actions {
  display: flex;
  flex: 0 0 auto;
  gap: 8px;
  max-width: 320px;
}

.help-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 14px;
}

.help-strip div {
  padding: 13px 14px;
  border: 1px solid var(--help-line);
  border-radius: 8px;
  background: #fff;
}

.help-strip strong,
.help-strip span {
  display: block;
}

.help-strip strong {
  margin-bottom: 4px;
  color: var(--help-primary-dark);
  font-size: 16px;
}

.help-strip span {
  color: var(--help-muted);
  font-size: 14px;
}

.help-grid {
  margin: 16px -7px 0;
}

.help-grid > [class*="col-"] {
  padding-left: 7px;
  padding-right: 7px;
}

.help-card {
  display: block;
  min-height: 142px;
  margin-bottom: 14px;
  padding: 16px;
  color: var(--help-text);
  text-decoration: none;
}

.help-card:hover,
.help-card:focus {
  color: var(--help-text);
  text-decoration: none;
  border-color: var(--help-primary);
}

.help-card-icon {
  display: block;
  margin-bottom: 10px;
  font-size: 28px;
}

.help-card h2 {
  margin: 0 0 8px;
  font-size: 18px;
  font-weight: 700;
  overflow-wrap: anywhere;
}

.help-card p {
  margin: 0;
  color: var(--help-muted);
  font-size: 16px;
  overflow-wrap: anywhere;
}

.help-panel {
  padding: 18px;
}

.help-section {
  margin-top: 16px;
}

.help-section h2 {
  margin: 0 0 12px;
  font-size: 20px;
  font-weight: 800;
}

.help-trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.help-trust {
  padding: 15px;
}

.help-trust h3 {
  margin: 0 0 8px;
  color: var(--help-primary-dark);
  font-size: 16px;
  font-weight: 800;
}

.help-trust p {
  margin: 0;
  color: var(--help-muted);
  font-size: 16px;
  overflow-wrap: anywhere;
}

.help-steps {
  font-size: 16px;
  margin: 0;
  padding-left: 20px;
}

.help-steps li {
  margin-bottom: 10px;
  overflow-wrap: anywhere;
}

.help-note {
  font-size: 16px;
  margin-top: 16px;
  padding: 12px 14px;
  border-left: 4px solid var(--help-accent);
  background: #fff8e8;
  color: #5f4712;
}

.help-image {
  font-size: 16px;
  margin: 16px 0;
  padding: 18px;
  border: 1px dashed #aab7c8;
  border-radius: 8px;
  background: #eef3f8;
  color: #52637a;
  text-align: center;
}

.help-image img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto !important;
  margin: 0 auto;
  border-radius: 7px;
}

.help-image-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  align-items: start;
}

.help-image strong {
  display: block;
  margin-bottom: 6px;
  color: #34465d;
}

.help-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 18px 0 0;
}

.help-btn {
  display: inline-block;
  padding: 9px 13px;
  border: 1px solid var(--help-primary);
  border-radius: 6px;
  color: var(--help-primary);
  background: #fff;
  font-weight: 700;
  text-decoration: none;
}

.help-btn:hover,
.help-btn:focus {
  color: #fff;
  background: var(--help-primary);
  text-decoration: none;
}

.help-btn.primary {
  color: #fff;
  background: var(--help-primary);
}

.help-list {
  font-size: 16px;
  margin: 0;
  padding-left: 18px;
}

.help-list li {
  margin-bottom: 8px;
  overflow-wrap: anywhere;
}

@media (max-width: 991px) {
  .help-hero {
    align-items: flex-start;
  }

  .help-hero-actions {
    flex-direction: column;
    max-width: 240px;
  }

  .help-card {
    min-height: 132px;
  }
}

@media (max-width: 767px) {
  .help-shell {
    padding: 10px 10px 30px;
  }

  .help-top {
    align-items: flex-start;
    padding: 10px 0 10px;
  }

  .help-hero,
  .help-panel {
    padding: 15px 13px;
  }

  .help-hero {
    display: block;
  }

  .help-hero-actions {
    display: block;
    margin-top: 14px;
  }

  .help-hero-actions .help-btn + .help-btn {
    margin-top: 8px;
  }

  .help-hero h1,
  .help-page-title {
    font-size: 23px;
    line-height: 1.18;
  }

  .help-hero p,
  .help-lead {
    font-size: 16px;
  }

  .help-strip,
  .help-trust-grid {
    grid-template-columns: 1fr;
  }

  .help-strip {
    gap: 8px;
  }

  .help-section {
    margin-top: 14px;
  }

  .help-section h2 {
    font-size: 18px;
  }

  .help-grid {
    margin-left: 0;
    margin-right: 0;
  }

  .help-grid > [class*="col-"] {
    padding-left: 0;
    padding-right: 0;
  }

  .help-card {
    min-height: auto;
    margin-bottom: 10px;
    padding: 14px;
  }

  .help-card-icon {
    margin-bottom: 6px;
    font-size: 22px;
  }

  .help-card h2 {
    font-size: 17px;
  }

  .help-image {
    padding: 13px;
    text-align: left;
  }

  .help-image-grid {
    grid-template-columns: 1fr;
  }

  .help-nav {
    display: block;
  }

  .help-btn {
    width: 100%;
    margin-bottom: 8px;
    text-align: center;
  }
}

@media (max-width: 380px) {
  .help-shell {
    padding-left: 8px;
    padding-right: 8px;
  }

  .help-hero,
  .help-panel,
  .help-card,
  .help-trust,
  .help-strip div {
    border-radius: 7px;
  }

  .help-hero h1,
  .help-page-title {
    font-size: 21px;
  }
}
