body {
      background: linear-gradient(rgb(0 0 0 / 11%), rgb(0 0 0 / 30%)), url(../images/banner.jpg);
      background-size: cover;
      background-position: center;
      background-attachment: fixed;
      min-height: 100vh;
      display: flex;
      flex-direction: column;
      align-items: center;
      margin: 0;
      font-family: Arial, sans-serif;
    }
    header {
      position: fixed;
      top: 0;
      width: 100%;
      background: linear-gradient(90deg, #1e40af, #3b82f6);
      color: white;
      padding: 7px 0px;
      box-shadow: 0 2px 5px rgba(0,0,0,0.2);
      z-index: 1000;
    }
    .header-content {
      max-width: 1200px;
      margin: 0 auto;
      display: flex;
      justify-content: center;
      align-items: center;
    }
    .logo svg {
      width: 32px;
      height: 32px;
      margin-right: 0.5rem;
    }
    .quiz-container {
      max-width: 800px;
      background: white;
      padding: 5rem;
      border-radius: 12px;
      box-shadow: 0 4px 20px rgba(0,0,0,0.1);
      margin-top: 7rem;
      margin-bottom: 2rem;
      text-align: center;
    }
    .cta-header {
      background: #326ee0;
      color: #fff;
      padding: 1rem;
      font-weight: bold;
      font-size: 1.1rem;
      text-transform: uppercase;
      margin-bottom: 0.5rem;
    }
    .urgency-message {
      color: red;
      font-weight: bold;
      margin-bottom: 1rem;
    }
    .car-icon {
      width: 40px;
      height: 40px;
      fill: #1e40af;
      filter: drop-shadow(0 2px 4px rgba(0,0,0,0.2));
      margin: 0 auto 1rem;
    }
    .step {
      display: none;
    }
    .step.active {
      display: block;
    }
    .progress {
      color: #666;
      font-size: 0.9rem;
      margin-bottom: 1rem;
    }
    .quiz-button {
      background: #326ee0;
      color: #fff;
      padding: 1rem;
      border-radius: 8px;
      font-weight: bold;
      width: 100%;
      margin: 0.5rem 0;
      transition: transform 0.2s;
    }
    .quiz-button:hover {
      transform: translateY(-2px);
    }
    .action-button {
      background: linear-gradient(90deg, #1e40af, #3b82f6);
    color: white;
    padding: 10px 15px;
    border-radius: 8px;
    font-weight: bold;
    width: 48%;
    margin: 0.5rem 1%;
    transition: transform 0.2s;
    font-size: 18px;
    }
    .action-button:hover {
      transform: translateY(-2px);
    }
    input {
      transition: border-color 0.3s;
    }
    input:focus {
      border-color: #1e40af;
      box-shadow: 0 0 0 3px rgba(30, 64, 175, 0.2);
      outline: none;
    }
    .trust-signals {
      display: flex;
      justify-content: center;
      gap: 1rem;
      margin-top: 1rem;
    }
    .trust-signals svg {
      width: 24px;
      height: 24px;
      fill: #1e40af;
    }
    .tos-section {
      background: black;
      color: white;
      padding: 1rem;
      text-align: center;
      font-size: 0.75rem;
      width: 100%;
      margin-top: auto;
    }
    .tos-section a {
      color: #60a5fa;
      text-decoration: underline;
    }
    .sr-only {
      position: absolute;
      width: 1px;
      height: 1px;
      padding: 0;
      margin: -1px;
      overflow: hidden;
      clip: rect(0, 0, 0, 0);
      border: 0;
    }
    @media (max-width: 768px) {
      .quiz-container {
        margin-top: 4rem;
        padding: 1.5rem;
      }
      header {
        padding: 0.75rem;
      }
      .cta-header {
        font-size: 0.9rem;
      }
      .action-button {
        width: 100%;
        margin: 0.5rem 0;
      }
    }
    .header-content img{width: 18%;}
    .phone-number a{
      font-size: 25px;
    background-color: #fff;
    padding: 6px 20px;
    color: #326ee0;
    border-radius: 10px;
    margin-top: 0;
    display: inline-block;
    border:1px solid transparent;
    -moz-transition: all 300ms ease-in-out 0s;
    -webkit-transition: all 300ms ease-in-out 0s;
    transition: all 300ms ease-in-out 0s;
    }
    .phone-number a:hover, .phone-number a:focus{
      background: transparent;
      border:1px solid #fff;
      color: #fff;
    }
    .heading-sec{
      max-width: 700px;
    margin-bottom: 2rem;
    text-align: center;
    }
    .heading-sec h2{
      color: #fff;
      font-size: 28px;
      text-align: center;
      font-weight: 600;
      margin-bottom: 20px;
    }
     .heading-sec .action-button {
      background: linear-gradient(90deg, #1e40af, #3b82f6);
    color: white;
    padding: 16px 15px;
    border-radius: 8px;
    font-weight: bold;
    width: 48%;
    margin: 0.5rem 1%;
    transition: transform 0.2s;
    font-size: 30px;
    }
    .heading-sec .action-button:hover {
      transform: translateY(-2px);
    }
    @media (max-width: 768px) {
      .phone-number{display: none;}
      .heading-sec h2{font-size: 20px;}
      .action-button{font-size: 20px;}
      .header-content .justify-start{justify-content: center !important;}
    }
        .error-message{
      text-align: left;
    }