body {
    font-family: BlinkMacSystemFont, -apple-system, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
}

.logo img {
    max-height: 100px;
    width: auto;
}

.custom-design-svg {
    fill: rgb(37, 93, 170);
    position: absolute;
    left: -2.75rem; /* -left-11 */
    top: 0.125rem; /* top-0.5 */
}

#retph {
    color: rgb(42, 67, 101);
    height: 1.75rem; /* h-7 */
}

.phone-text-style {
    color: rgb(42, 67, 101);
}

.tty-text {
    color: rgb(42, 67, 101);
}

.availability-dot {
    color: rgb(18, 93, 170);
}

.availability-text {
    color: rgb(42, 67, 101);
    font-family: Helvetica, Arial, sans-serif;
}

.text-center-min-width {
    min-width: 140px;
}

.retCampaign_container {
    max-width: 900px;
}

.main-heading {
    font-size: 30px;
    line-height: 30px;
    font-weight: 700;
    padding: 3px;
    color: rgb(0, 0, 0);
}

.sub-heading {
    font-size: 25px;
    line-height: 25px;
    font-weight: 400;
    padding: 3px;
    color: rgb(0, 0, 0);
}

.pointer-img {
    width: 10%;
}

.btn:hover {
    background-color: rgb(51, 139, 255) !important;
}


#step0 {
    background-color: rgb(51, 139, 255);
}

.page-footer {
    background-color: rgb(248, 250, 252);
    color: rgb(183, 183, 184);
}

.great-news-heading {
    font-size: 35px;
    text-align: center;
    line-height: 35px;
    font-weight: 500;
    padding: 3px;
    color: rgb(33, 181, 70);
}

.call-today-heading {
    font-size: 30px;
    text-align: center;
    line-height: 30px;
    font-weight: 500;
    background: rgb(235, 238, 99);
    padding: 3px;
}

.review-benefits-heading {
    font-size: 25px;
    text-align: center;
    line-height: 25px;
    font-weight: 500;
    padding: 3px;
}

#callButton {
    background-color: rgb(51, 139, 255);
}

@keyframes flash {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

.flashing-text {
  animation: flash 1s 3;
}

.question-card {
  background-color: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 20px;
  box-shadow: 0 12px 40px rgba(15, 23, 42, 0.12);
  margin: 0 auto;
  max-width: 640px;
  padding: 28px 32px 32px;
}

.question-progress {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.question-progress-header {
  color: #1f2933;
  display: flex;
  font-size: 16px;
  font-weight: 600;
  justify-content: space-between;
}

.question-progress-track {
  background-color: #e5e7eb;
  border-radius: 999px;
  height: 8px;
  overflow: hidden;
}

.question-progress-bar {
  background: linear-gradient(90deg, #3b82f6 0%, #2563eb 100%);
  border-radius: 999px;
  height: 100%;
  transition: width 0.3s ease;
  width: 25%;
}

.question-body {
  margin-top: 28px;
}

.question-item {
  margin-bottom: 16px;
}

.question-title {
  color: #111827;
  font-size: 28px;
  font-weight: 600;
  line-height: 1.2;
  margin: 0;
  text-align: left;
}

.option-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.option-btn {
  background-color: #ffffff;
  border: 1px solid #d1d5db;
  border-radius: 16px;
  color: #111827;
  cursor: pointer;
  font-size: 18px;
  font-weight: 500;
  padding: 18px 22px;
  text-align: left;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.option-btn:hover {
  border-color: #3b82f6;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.15);
}

.option-btn:focus {
  border-color: #2563eb;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.25);
  outline: none;
}

.option-btn.is-selected {
  border-color: #2563eb;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.25);
}

@media (max-width: 640px) {
  .question-card {
    padding: 24px 20px;
  }

  .question-title {
    font-size: 24px;
  }

  .question-progress-header {
    font-size: 14px;
  }

  .option-btn {
    font-size: 16px;
    padding: 16px 18px;
  }
}