
    :root {
      --navy: #223a4a;
      --green: #b6cf5a;
      --green-soft: #f3f7e6;
      --text-muted: #8fa1a8;
      --border-green: #b6cf5a;
    }

    body {
      font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
      background: #ffffff;
      color: #1e1e1e;
    }

    .overall-wrapper {
      width: 60%;
      margin: 0 auto;
    }

    /* Top Bar */
    .topbar {
      background: var(--navy);
      padding: 20px 32px;
      color: #fff;
    }

    .brand {
      font-size: 24px;
      font-weight: 700;
    }

    .brand span {
      color: var(--green);
    }

    .brand-sub {
      font-size: 12px;
      opacity: .8;
    }

    .header-logo {
      max-height: 50px; 
      margin: 10px; 
    }

    /* Progress */
    .progress-wrapper { 
      margin-top:5%;
      position: relative;  
    }


    .progress {
      height: 8px;
      background: #e9ecef;
      border-radius: 50px;
      width: 100%;
    }

    .progress-bar {
      width: 10%;
      background: var(--green);
      border-radius: 50px;
    }

    .progress-label {
      font-weight: bold;
      position: absolute;
      margin-top: 20px;
      top: -38px;
      left: 10%;
      transform: translateX(-50%);
      background: #fff;
      border: 1px solid #000;
      padding: 4px 10px;
      font-size: 13px;
      border-radius: 6px;
      white-space: nowrap;
    }

    .back {
      color: #000;
    }



/* Inner white arrow to match box */
.progress-label::after {
  content: "";
  position: absolute;
  bottom: -7px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-top:8px solid #fff;
}

/* Arrow */
.progress-label::before {
  content: "";
  position: absolute;
  bottom: -8px;               /* attach to box */
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-top: 8px solid #000; /* arrow border */
}

    .progress-check {
      position: absolute;
      right: -18px;
      top: 30%;
      transform: translateY(-50%);
      width: 26px;
      height: 26px;
      background: #e6efd1;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 14px;
      color: var(--green);
    }

 

    /* Vehicle Section */
    .vehicle-section {
      padding: 0px 15px 40px;
      text-align: center;
    }

    .vehicle-section h1 {
      font-size: 36px;
      font-weight: 700;
    }

    .vehicle-section p {
      color: var(--green);
      margin-bottom: 40px;
    }


    .vehicle-btn {
      background: var(--green-soft);
      border: 2px solid transparent;
      padding: 14px 18px;
      border-radius: 10px;
      font-weight: 600;
      transition: all .2s ease;
    }

    .vehicle-btn:hover {
      border-color: var(--border-green);
    }

    .vehicle-btn.active {
      border-color: var(--border-green);
      background: #ffffff;
    }

    /* Partners */
    .partners {
      padding: 50px 15px;
      text-align: center;
    }

    .partners h5 {
      font-style: italic;
      margin-bottom: 30px;
    }
    .partner-img {
      height: 100px;
  max-width: 120px;
    }

  .bottom-btn {
      background: #fff;
      border: 2px solid transparent;
      padding: 14px 18px;
      border-radius: 10px;
      font-weight: 600;
      transition: all .2s ease;
      border-color: #000;
    }

    .bottom-btn:hover {
      border-color: #000;
    }

    .hidden {
      display: none;
    }


    /* Footer */
    footer {
      background: #f8f9fa;
      font-size: 12px;
      color: #6c757d;
      padding: 30px 15px;
    }

    footer a {
      color: #6c757d;
      text-decoration: none;
      margin: 0 6px;
    }
    .check {
      width: 30px;
    }

    .insurance-grid {
  max-width: 500px;
  margin: 0 auto;
}

.insurance-card {
  width: 100%;
  height: 90px;
  background: #f4f7e8;
  border: 2px solid transparent;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  cursor: pointer;
  font-weight: 600;
}

.insurance-card img {
  max-height: 200px;
  max-width: 200px;
}

.insurance-card:hover {
  border-color: #b6cf5a;
  background: #ffffff;
}

.insurance-card.active {
  border-color: #b6cf5a;
  background: #ffffff;
}

.insurance-card.full {
  height: 70px;
  font-size: 18px;
}

.coverage-img {
  max-height: 70% !important;
} 
.savings-questions {
  max-width: 950px;
  margin: 40px auto;
}

.question-row {
  display: flex;
  align-items: center;
  text-align: left;
  margin-bottom: 30px;
}
.radio-group, .question-options {
  display: flex;
  gap: 1rem; /* spacing between options */
}

.question-label {
  flex: 1;
  font-size: 20px;
  font-weight: 600;
}

.question-options {
  display: flex;
  gap: 20px;
  max-width: 460px;
}

.radio-card {
  width: 200px;
  height: 70px;
  padding: 0 20px;
  border-radius: 12px;
  border: 2px solid #c7db84;
  background: #f4f7e8;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}

.check-circle {
  width: 22px;
  height: 22px;
  border: 2px solid #9fbf3f;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.radio-card.active {
  background: #a9c857;
  color: #fff;
}

.radio-card.active .check-circle {
  border-color: #fff;
}

.radio-card.active .check-circle::after {
  content: "✓";
  color: #fff;
  font-size: 14px;
}
.radio-option {
  width: 220px;
  height: 64px;
  padding: 0 20px;
  border-radius: 12px;
  background: #f4f7e8;
  border: 2px solid #c6db83;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}

.radio-check {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 2px solid #9fbf3f;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.radio-option.active {
  background: #a9c857;
  color: #fff;
}

.radio-option.active .radio-check {
  border-color: #fff;
}

.radio-option.active .radio-check::after {
  content: "✓";
  font-size: 14px;
  color: #fff;
}
/* Continue button (matches image) */
.continue-btn {
  width: 100%;
  height: 64px;
  background: #223a4a; /* dark navy */
  color: #ffffff;
  border: none;
  border-radius: 12px;
  font-size: 20px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: all 0.2s ease;
}

.continue-btn:hover {
  background: #1b2f3c;
}

.continue-btn span {
  font-size: 22px;
  font-weight: 700;
}

.homeorrenter-text {
  font-size: 30px;
  font-weight: bold;
}

.dob-input {
  height: 60px;
  font-size: 22px;
  font-weight: 700;
  text-align: center;
  background: #f3f7e6;
  border: none;
  border-radius: 12px;
}

.form-control {
  height: 60px;
  font-size: 18px;
  border-radius: 12px;
  background: #f3f7e6;
  border: none;
}

