.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 3rem 2rem;
}

/* headings & text */
h1 {
  font-weight: 700;

  line-height: 1.2;

  margin-bottom: 0.5rem;
}

.subhead {
  font-weight: 600;

  margin-bottom: 1.5rem;
  border-left: 6px solid #e61e2d;
  padding-left: 1.2rem;
}

.lead-text {
  max-width: 900px;
  margin-bottom: 1.2rem;
}

/* card grid */
.card-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 2rem;
  margin: 20px 0 30px;
}

.card {
  background: #ffffff;
  border-radius: 24px;
  padding: 25px 20px;
  box-shadow: 0 12px 30px rgba(0, 20, 40, 0.08);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
  border: 1px solid #e9eef3;
  display: flex;
  flex-direction: column;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 25px 40px rgba(0, 35, 70, 0.12);
  border-color: #cbd5e1;
}

.card h3 {
  font-weight: 700;
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.card h3 span {
  font-weight: 500;
}

.card {
  gap: 10px;
}

.card ul {
  list-style-type: disc;
}
.streams-section li:not(:first-child) {
  border-left: 1px solid #414141;
  padding-left: 15px;
}

.streams-section {
  gap: 20px;
}
.card li {
  margin-bottom: 0.25rem;
}

.card strong {
  font-weight: 600;
}

.btn {
  background-color: #e61e2d;

  text-decoration: none;
  border: none;
  cursor: pointer;
  transition:
    background-color 0.2s,
    transform 0.1s;
  box-shadow: 0 6px 14px rgba(247, 116, 116, 0.35);

  align-self: flex-start;
  margin-top: 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.1);

  display: inline-block;
  overflow: hidden;
  vertical-align: middle;
  font-size: 16px;
  line-height: 26px;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
  color: #fff !important;
  text-align: center;
  padding: 12px 36px;
  text-transform: uppercase;
    border-radius: 0px;
}

.btn:hover {
  background-color: #cf1b28;
  color: #ffffff;
  box-shadow: 0 10px 20px rgba(247, 116, 116, 0.35);
}

.btn.large {
    font-size: 16px;
  padding: 12px 36px;
  background-color: #e61e2d;
  border-radius: 0px;
    text-transform: uppercase;
  box-shadow: 0 15px 25px rgba(247, 116, 116, 0.35);
}

.btn.large:hover {
  background-color: #cf1b28;
}

/* final CTA section */
.final-cta {
  background: linear-gradient(145deg, #eef2f6 0%, #ffffff 100%);
  border-radius: 24px;
   padding: 25px 20px;
  text-align: center;
  border: 1px solid #d9e2ef;
  box-shadow: 0 20px 35px -8px rgba(0, 34, 68, 0.1);
  margin-top: 3rem;
}

.final-cta h2 {
  font-weight: 700;

  margin-bottom: 1.25rem;
  letter-spacing: -0.02em;
}

.final-cta p {
  /* font-size: 1.25rem; */

  max-width: 850px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 1rem;
}

.final-cta .btn {
  margin-top: 2rem;
}

/* how to apply line */
.apply-note {
  background-color: #f1f5f9;
  padding: 1rem 1.2rem;
  border-radius: 20px;
  margin: 1rem 0 0.8rem;
  font-size: 0.95rem;
  border-left: 4px solid #e61e2d;
}

.apply-note p {
  margin-bottom: 0;
  font-weight: 500;
}

hr {
  border: none;
  border-top: 2px solid #dce5ec;
  margin: 1.2rem 0;
}

/* responsive */
@media (max-width: 1000px) {
  .card-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 700px) {
 

  .subhead {
    font-size: 1.3rem;
  }
  .card-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .final-cta {
      padding: 25px 20px;
  }

}

/* small tweaks */
.badge-light {
  background: #e6edf5;

  font-weight: 600;
  padding: 0.3rem 0.9rem;
  border-radius: 40px;
  display: inline-block;
  margin-bottom: 1rem;
  /* font-size: 0.9rem; */
}

.card .btn {
  margin-top: 1rem;
}

.intro-section {
  margin-bottom: 1.5rem;
}

.intro-section p:last-of-type {
  margin-bottom: 0;
}
