/* msl page css */
/* =========================
   SECTION BASE (CALM + CLEAN)
========================= */
.mls {
  padding: 22px 14px;
  background: linear-gradient(180deg, #ffffff, #f7fbff);
}

/* =========================
   HERO TITLE (H1)
========================= */
.mls h1 {
  font-size: 24px;
  text-align: center;
  font-weight: 800;
  color: #0a2540;
  margin-bottom: 4px;
  line-height: 1.3;
}

/* subtle divider */
.mls h1::after {
  content: "";
  display: block;
  width: 60px;
  height: 4px;
  margin: 8px auto 0;
  border-radius: 10px;
  background: linear-gradient(90deg, #ffcc00, #007bff);
}

/* =========================
   SUBTITLE (H2)
========================= */
.mls h2 {
  font-size: 14px;
  text-align: center;
  font-weight: 500;
  color: #6b7c93;
  margin-bottom: 16px;
}

/* =========================
   HERO IMAGE
========================= */
.mls img {
  width: 100%;
  border-radius: 14px;
  margin-bottom: 16px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

/* =========================
   TEXT BASE (READABILITY FIRST)
========================= */
.mls p {
  font-size: 14.5px;
  line-height: 1.65;
  color: #2f3a45;
  margin-bottom: 14px;
}

/* =========================
   INTRO BLOCK (FOCUS)
========================= */
.mls p:first-of-type {
  background: #ffffff;
  padding: 16px;
  border-radius: 14px;
  border: 1px solid #e6eefc;
}

/* =========================
   PRIMARY CTA (CALM BUT STRONG)
========================= */
.mls a {
  display: block;
  text-align: center;
  padding: 13px;
  margin: 16px 0;

  border-radius: 26px;
  background: linear-gradient(135deg, #ffcc00, #007bff);
  color: #fff !important;

  font-size: 14.5px;
  font-weight: 700;
  text-decoration: none;

  box-shadow: 0 8px 18px rgba(0,123,255,0.25);
  transition: all 0.25s ease;
}

/* soft interaction */
.mls a:active {
  transform: scale(0.97);
}

/* =========================
   INLINE LINKS (TEXT ONLY)
========================= */
.mls p a {
  display: inline !important;
  background: none !important;
  padding: 0 !important;

  color: #0066cc !important;
  font-weight: 600;
  text-decoration: underline;

  box-shadow: none !important;
}

/* =========================
   INFO BLOCKS (GUIDED FLOW)
========================= */
.mls p:nth-of-type(3),
.mls p:nth-of-type(4),
.mls p:nth-of-type(5) {
  background: #ffffff;
  padding: 15px;
  border-radius: 14px;
  border: 1px solid #eaf1ff;
}

/* =========================
   FINAL BLOCK (SOFT EMPHASIS)
========================= */
.mls p:last-of-type {
  background: #fffbea;
  padding: 15px;
  border-radius: 14px;
  border-left: 4px solid #ffcc00;
}

/* =========================
   STRONG TEXT
========================= */
.mls strong {
  color: #0a2540;
}

/* =========================
   DESKTOP (KEEP IT CENTERED)
========================= */
@media (min-width: 768px) {
  .mls {
    max-width: 720px;
    margin: auto;
    padding: 28px;
  }

  .mls h1 {
    font-size: 28px;
  }

  .mls h2 {
    font-size: 15px;
  }
}