/* Clean, white, simple layout inspired by the reference.
   NOTE: The header is a stylized text version (original logo is copyrighted). */

* { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  background: #ffffff; /* plain white */
  color: #0b1b3a;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
}

.container {
  width: 100%;
  max-width: 760px;
  text-align: center;
  padding: 36px;
}

/* Stylized brand header: not the official logo */
.brand {
  font-weight: 900;
  letter-spacing: 1px;
  font-size: 28px;
  margin-bottom: 18px;
}
.brand-red {
  color: #d10000; /* bold red */
  margin-right: 8px;
}
.brand-blue {
  color: #003087; /* deep blue */
}

/* Main title and subtitle */
.title {
  font-size: 26px;
  color: #0b1b3a;
  margin-bottom: 10px;
  font-weight: 700;
  text-transform: none;
}
.subtitle {
  font-size: 18px;
  color: #0b1b3a;
  font-weight: 800;
  margin-bottom: 8px;
}

/* Thin red line under sub-headline */
.thin-red {
  width: 120px;
  height: 3px;
  background: #d10000;
  margin: 12px auto 22px auto;
  border-radius: 2px;
}

/* Steps section */
.steps-title {
  color: #d10000;
  font-weight: 800;
  margin-bottom: 12px;
  font-size: 16px;
}

.steps-list {
  list-style: none;
  text-align: left;
  display: block;
  max-width: 680px;
  margin: 0 auto 20px auto;
  padding: 0;
}
.steps-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 16px;
  padding: 12px 14px;
  border-radius: 8px;
  margin-bottom: 10px;
  color: #0b1b3a;
  background: #fff;
  border: 1px solid rgba(2,6,23,0.04);
}
.check {
  width: 28px; height: 28px;
  color: #d10000;
  flex: 0 0 28px;
  margin-top: 2px;
}

/* CTA button */
.cta {
  display: inline-block;
  background: #d10000;
  color: #ffffff;
  padding: 14px 28px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 800;
  font-size: 18px;
  margin-top: 10px;
  box-shadow: 0 10px 30px rgba(193,0,0,0.12);
}
.cta:active { transform: translateY(1px); }

/* Bottom thin red divider */
.thin-bottom {
  width: 100%;
  max-width: 640px;
  height: 2px;
  margin-top: 20px;
}

/* Slogan in cursive */
.slogan {
  font-family: "Brush Script MT", "Lucida Handwriting", cursive;
  font-size: 16px;
  color: #333;
  margin-top: 12px;
}

/* Responsive */
@media (max-width: 520px) {
  .container { padding: 20px; }
  .brand { font-size: 22px; }
  .title { font-size: 20px; }
  .cta { width: 100%; padding: 12px; font-size: 16px; }
  .steps-list li { font-size: 15px; padding: 10px; }
}
