.tp-wrap {
  display: flex;
  flex-direction: column;
  gap: 80px;
}

.tp-container {
  max-width: 750px;
  margin: 0;
}

.tp-card {
  background: #F7FDFF;
  border-radius: 16px;
  border: 1px solid rgba(128,128,128,0.2);
  padding: 40px;
}

.tp-box {
  background: #fff;
  border-radius: 16px;
  border: 1px solid rgba(128,128,128,0.15);
  padding: 40px;
  margin-top: 24px;
  margin-bottom: 24px;
}

.tp-cta {
  background: #E7F9FF;
  border-radius: 24px;
  padding: 60px 40px;
  text-align: center;
}

.tp-wrap .tp-content h2 {
  color: #213139 !important;
  font-family: Inter !important;
  font-weight: 700 !important;
  margin-bottom: 12px !important;
}

.tp-wrap .tp-content h5 {
  color: #213139 !important;
  font-family: Roboto !important;
  font-size: 18px !important;
  font-weight: 700 !important;
  line-height: 23.4px !important;
  margin-bottom: 12px !important;
  margin-top: 24px !important;
}

.tp-wrap .tp-content p {
  color: #213139 !important;
  font-family: Roboto !important;
  font-size: 18px !important;
  line-height: 23.4px !important;
  margin-bottom: 16px !important;
}

.tp-wrap .tp-content li {
  color: #213139 !important;
  font-family: Roboto !important;
  font-size: 18px !important;
  line-height: 23.4px !important;
}

.tp-wrap [style*="width"] {
  width: auto !important;
  max-width: 100% !important;
}

@media (max-width: 768px) {
  .tp-wrap {
    gap: 40px;
  }

  .tp-card {
    padding: 24px;
  }

  .tp-cta {
    padding: 40px 24px;
  }
}

.tp-step {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.tp-step-number {
  background: #B42127;
  color: #fff;
  width: 40px;
  height: 40px;
  min-width: 40px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: Inter;
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
}

.tp-step-content {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.tp-step-content h3 {
  margin: 0;
  font-size: 22px;
  font-weight: 700;
  color: #213139;
}

.tp-step-content p {
  margin: 0;
}
.tp-button {
  display: inline-block;
  background: #FDC23C;
  color: #1F2937 !important;
  font-family: Inter;
  font-size: 16px;
  font-weight: 700;
  line-height: 21px;
  text-decoration: none;
  padding: 24px;
  border-radius: 4px;
  text-align: center;
}

/* optional hover */
.tp-button:hover {
  opacity: 0.9;
}
.tp-content ul {
  padding-left: 20px;
  margin-bottom: 20px;
}

.tp-content li {
  line-height: 1.8;
  margin-bottom: 12px;
}
@media (max-width: 480px) {

  /* Typography scale down */
  .tp-content h2 {
    font-size: 20px !important;
    line-height: 26px !important;
  }

  .tp-content h3 {
    font-size: 18px !important;
  }

  .tp-content p,
  .tp-content li {
    font-size: 15px !important;
    line-height: 20px !important;
  }

  /* Align bullets flush left */
  .tp-content ul {
    padding-left: 0;
    margin-left: 0;
    list-style-position: inside;
  }

  /* Tighten spacing slightly */
  .tp-content li {
    margin-bottom: 10px;
  }
  .tp-box ul,
  .tp-box li {
      margin: 0px !important;
      padding: 0px !important;
  }
}