* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

body {
  background: #f6f2ee;
  color: #1e1e1e;
}

/* Top bar */
.top-bar {
  background: linear-gradient(90deg, #0b1b36, #112b55);
  color: #fff;
  padding: 14px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  font-weight: 600;
}

.shield {
  background: #1e3a8a;
  border-radius: 50%;
  width: 22px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
}

/* Main container */
.container {
  max-width: 420px;
  margin: 0 auto;
  padding: 24px 18px 40px;
  text-align: center;
}

.badge {
  letter-spacing: 2px;
  font-size: 12px;
  color: #6b7280;
  margin-bottom: 14px;
}

h1 {
  font-size: 28px;
  line-height: 1.3;
  margin-bottom: 14px;
}

.highlight {
  color: #e11d2e;
  font-weight: 800;
}

.subtitle {
  font-size: 15px;
  line-height: 1.6;
  color: #4b5563;
  margin-bottom: 24px;
}

/* Card */
.card {
  background: #ffffff;
  border-radius: 14px;
  padding: 22px;
  margin-bottom: 22px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.06);
}

.card h2 {
  font-size: 16px;
  color: #e11d2e;
  margin-bottom: 16px;
  font-weight: 700;
}

.steps {
  list-style: none;
  text-align: left;
}

.steps li {
  position: relative;
  padding-left: 32px;
  margin-bottom: 14px;
  font-size: 15px;
  line-height: 1.5;
}

.steps li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 0;
  color: #e11d2e;
  font-weight: bold;
}

/* CTA */
.helper-text {
  font-size: 14px;
  color: #6b7280;
  margin-bottom: 16px;
}

.cta-button {
  display: inline-block;
  background: #e11d2e;
  color: #fff;
  text-decoration: none;
  padding: 16px 36px;
  border-radius: 999px;
  font-size: 18px;
  font-weight: 700;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.cta-button:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 20px rgba(225, 29, 46, 0.3);
}

.disclaimer {
  font-size: 12px;
  color: #9ca3af;
  margin-top: 18px;
}