.button-outer {
    padding-right: 1.5rem;
    margin-right: 15px;
}
span.brokertrs {
 color: #fff;
}
.hero-image {
  max-width: 90%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}


ul.appbrwrs {
    margin: 20px 2px;
    font-size: 16px;
    list-style: none;
    display: flex;
    flex-flow: column wrap;
    height: 16em;
}
ul.appbrwrs li {
    padding: .5rem .875rem;
    margin: 2px;
    background-color: transparent;
    list-style-type: none;
    width: 100%;
    max-width: 340px;
}
ul.appbrwrs li:before {
    content: '\2713';
    display: inline-block;
    position: relative;
    top: -2px;
    width: 20px;
    height: 20px;
    margin-right: 12px;
    padding: 2px;
    font-size: 15px;
    font-weight: 900;
    font-family: Arial, Helvetica, sans;
    line-height: 14px;
    color: #fff;
    background-color: green;
    border: 2px solid green;
    border-radius: 50%;
    text-align: center;
}
.customer-quote {
    font-style: italic;
    padding: 10px;
}
 h5 {
    font-size: 1.0875rem;
    font-weight: 500;
    line-height: 1.2;
    margin: 1rem 0 0.5rem 0;
    padding: 0 1.5rem;
}
blockquote {
    margin: 0 1.5rem;
    font-size: .92375rem;
}
.customer-quote::before {
    content: '“';
    margin-right: 0.2em;
}
cite {
    display: block;
    font-size: 0.875em;
    font-style: normal;
    text-align: right;
    text-transform: capitalize;
    margin: 0.25rem 2rem 1rem 2rem;
}

.trust-badges {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px; 
  margin-top: 15px;
}

.trust-badges img {
  max-width: 110px; /* Adjust size as needed */
  height: auto;
  filter: grayscale(100%);
  opacity: 0.4; /* Slightly muted effect */
  transition: filter 0.3s ease, opacity 0.3s ease;
}

.trust-badges img:hover {
  filter: grayscale(0%); /* Restore color on hover */
  opacity: 1;
}
.trust-badges2 {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 15px; 
  margin-top: 25px;
}

.trust-badges2 img {
  max-width: 125px; 
  height: auto;
  filter: grayscale(100%);
  opacity: 0.4; /* Slightly muted effect */
  transition: filter 0.3s ease, opacity 0.3s ease;
}

.trust-badges2 img:hover {
  filter: grayscale(0%); 
  opacity: 1;
}

/* ==================  New styling ===*/

.greenmark {
    color: #34b233;
    font-size: 20px;
    font-weight: 600;
    padding: 6px 2px 0 0;
}

.container-fluid {
  display: flex;
  flex-wrap: nowrap; /* Default layout does not wrap */
  gap: 20px; /* Space between columns */
}

#progress-bar-container {
  flex: 0 0 20%; /* Fixed 20% width */
  display: block; /* Default visible */
}

.form-container {
  flex: 0 0 60%; /* Fixed 60% width */
  display: block; /* Default visible */
}
.form-container .progress-bar {
    display: none;
    width: 0;
    height: 0; 
}

.col-fm3 {
  flex: 0 0 20%; /* Fixed 20% width */
  display: block; /* Default visible */
  text-align: center; /* Center align content */
}

@media only screen and (max-width: 980px) {
  .container-fluid {
    flex-wrap: wrap; /* Allow wrapping for responsive layout */
  }

  .form-container {
    flex: 0 0 100%; /* Expand to full width */
    margin: 0 auto !important; /* Center horizontally */

  }
  .form-container::before {
    content: ''; 
    display: block;
  }

  .form-container .progress-bar {
    display: flex; 
    flex-direction: row;
    justify-content: space-between; 
    padding: 10px 5px;
    font-size: 0.8rem; /* Smaller font size */
    border-bottom: 1px solid #ccc; /* Add a separator line */
    margin-bottom: 15px;
    width: 100%;
    height: auto;
  }
  #progress-bar-container {
    display: none; /* Hide the left progress bar container */
  }

  .progress-step {
    text-align: center;
  }

  .progress-step .step-number {
    font-weight: 900;
    margin-bottom: 3px;
  }

  .progress-step div {
    font-size: 0.8rem; /* Smaller font for labels */
  }
  .col-fm3 {
    flex: 0 0 100%; /* Expand to full width */
    margin: 0 auto; /* Center horizontally */
    order: 2; /* Move below the form container */
  }
}

@media only screen and (max-width: 960px) {
.hero-image {
   width: 0;
   height: 0;
   border: 0;
   display: none;
   overflow: hidden;
   clip: rect(0 0 0 0);
    }
#progress-bar-container h3, #progress-bar-container p {
    display: none; /* Hide progress bar */
     }
   .trust-badges2 {
  display: flex;
  flex-direction: row;
     }
    .trust-badges2 img {
     padding-top: 10px;
     }
  }

@media only screen and (max-width: 768px) {
span.brokertrs {
   width: 0;
   height: 0;
   display: none;
   overflow: hidden;
   clip: rect(0 0 0 0);
   margin: -1px;
  }
}
@media only screen and (max-width: 520px) {
   .progress-step {
      max-width: 80px;
     }
  }
