.top-branding {
  display: flex;
  align-items: center; /* vertically centers content */
  justify-content: center; /* horizontally centers (optional) */
  height: 34px;
  background-color: #0c2749;
}

.top-branding p {
  color: white;
  padding-top: 4px;
  font-size: 16px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  text-align: center;
  font-family: var(--font-open-sans);
  font-weight: 600;
  margin: auto;
}

.calc-image {
  width: 100%;
  height: auto;
  display: block;
  max-width: 768px;
  margin-top: 30px;
}

.mobile {
  display: none;
}

@media (max-width: 500px) {
  .calc-image.desktop {
    display: none;
  }

  .calc-image.mobile {
    display: block;
  }
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 24px;
  background-color: white;
  border-bottom: 1px solid #eee;
}

.header-right {
  display: inline-flex;
  gap: 16px;
}

.logo {
  height: 40px;
}

.joist-logo {
  margin-right: 16px;
}

.pill {
  display: flex;
  align-items: center;
  background-color: #e6f4ff; /* light blue */
  color: #0077cc;
  padding: 8px 12px;
  border-radius: 999px;
  font-weight: bold;
  font-size: 14px;
}

.pill i {
  margin-right: 8px;
}

/* Mobile styles */
@media (max-width: 768px) {
}

@media (max-width: 1200px) {
  .desktop .how-it-works-container {
    display: block !important;
  }

  .desktop .how-it-works-container .phone-image-container {
    margin: auto !important;
  }

  .desktop .how-it-works-container .phone-image-container {
    text-align: center !important;
  }
}

@media (min-width: 768px) {
  /* Retain section wide padding for these containers; hero now uses fluid clamp-based padding */
  .how-it-works-container,
  .FAQ {
    padding-left: 240px !important;
    padding-right: 240px !important;
  }

  .FAQ {
    padding-left: 240px !important;
    padding-right: 240px !important;
  }
}

@media (max-width: 768px) {
  .pill {
    padding: 10px;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    justify-content: center;
  }

  .pill .phone-number {
    display: none;
  }

  .pill i {
    margin-right: 0;
  }

  .joist-logo {
    margin-right: 8px;
  }
  .desktop .container {
    display: block !important;
  }

  .phone-image {
    width: 100% !important;
    height: auto !important;
  }
}

@media (max-width: 450px) {
  .desktop .calc-content-container {
    gap: 0px !important;
    flex-direction: column !important;
  }

  .calc-content-container .sm-p {
    font-size: 12px !important;
  }
  .payment-display-text {
    display: block !important;
    height: 20px;
  }

  h1 {
    font-size: 34px !important;
    line-height: auto;
    text-align: center;
  }

  h2 {
    font-size: 28px !important;
  }

  .desktop .available-for {
    max-width: 160px !important;
  }

  .main-sub-heading {
    text-align: center;
  }

  .desktop .div-4 {
    margin: auto !important;
  }

  .desktop .div-8 {
    margin-top: 0px;
    display: block !important;
  }

  .desktop .div-8 p {
    margin-bottom: 0px;
  }
}

.hero-content {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  gap: 40px;
}

.desktop .text {
  flex: 1;
}

.desktop .hero-image {
  /* Allow shrinking as viewport narrows while keeping max size */
  flex: 0 1 560px;
  width: clamp(340px, 38vw, 560px);
  margin-top: 20px;
}

.desktop .hero-image img {
  width: 100%;
  height: auto;
}

/* Tablet: Shrink image; wrap below 880px (adjusted breakpoint) */
@media (max-width: 880px) {
  .hero-content {
    flex-direction: column;
  }

  /* Show hero image instead of hiding; allow it to shrink and sit below text/calculator */
  .hero-image {
    display: block;
    width: 100%;
    max-width: 420px; /* align with inline cap */
    margin: 24px auto 0; /* center on narrower viewports */
  }
}

/* Typography Defaults */
body {
  font-family: var(--font-open-sans);
  font-size: 16px;
  line-height: 1.5;
  color: #111;
  margin: 0;
  padding: 0;
  position: relative;
  align-self: stretch;
}

/* Headings */
h1,
h2,
h3,
h4,
h5 {
  line-height: 1.2 !important;
  color: #03171a;
  position: relative;
  align-self: stretch;
}

h1 {
  font-family: var(--font-bitter);
  font-weight: 700;
  font-size: 48px;
}

h2 {
  font-family: var(--font-bitter);
  font-weight: 700;
  font-size: 36px;
  text-align: center;
}

h3 {
  font-family: var(--font-bitter);
  font-weight: 600;
  font-size: 24px;
}

h4 {
  font-family: var(--font-bitter);
  font-weight: 600;
  font-size: 20px;
}

h5 {
  font-family: var(--font-bitter);
  font-weight: 700;
  font-size: 16px;
}

/* Paragraphs */
a,
p {
  font-family: var(--font-open-sans);
  font-size: 16px;
  margin: 0 0 1em;
  color: #03171a;
  line-height: 1.5;
}

a {
  color: #016de1 !important;
  text-decoration: underline;
}

.sm-p {
  font-family: var(--font-open-sans);
  font-size: 14px;
  margin: 0 0 1em;
  color: #03171a;
}

.extra-sm-p {
  font-family: var(--font-open-sans);
  font-size: 12px;
  margin: 0 0 1em;
  color: #03171a;
}

.main-sub-heading {
  position: relative;
  align-self: stretch;
  font-family: var(--font-open-sans);
  font-weight: 400;
  color: #03171a;
  font-size: 16px;
  letter-spacing: 0;
  line-height: 25.2px;
}

.hero-image img {
  width: 100%;
  height: auto;
}

.phone-image {
  width: 100%;
  height: auto;
  max-width: 400px;
}

.dollar-input-wrapper {
  position: relative;
  display: inline-block;
}

.dollar-prefix {
  position: absolute;
  top: 46%;
  left: 10px;
  transform: translateY(-50%);
  font-size: 16px;
  color: #555;
  pointer-events: none;
  font-family: var(--font-open-sans);
}

.desktop {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  position: relative;
  background-color: #ffffff;
}

.desktop .navigation {
  display: flex;
  flex-direction: column;
  width: 1374px;
  height: 80px;
  align-items: flex-start;
  justify-content: space-between;
  padding: 20px 24px;
  position: relative;
  background-color: var(--grayscalewhite);
}

.desktop .monthly-payment {
  display: flex;
  align-items: center;
  justify-content: space-between;
  align-self: stretch;
  width: 100%;
  position: relative;
  flex: 0 0 auto;
}

.desktop .group {
  display: inline-flex;
  align-items: center;
  gap: 40px;
  position: relative;
  flex: 0 0 auto;
}

.desktop .logo-primary-black {
  position: relative;
  width: 107px;
  height: 32px;
  background-image: url(./img/logo.png);
  background-size: cover;
  background-position: 50% 50%;
}

.desktop .menu {
  display: inline-flex;
  align-items: flex-start;
  gap: 8px;
  position: relative;
  flex: 0 0 auto;
}

.desktop .div-2 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 8px 16px;
  position: relative;
  flex: 0 0 auto;
  border-radius: 8px;
}

.desktop .text-wrapper {
  position: relative;
  width: fit-content;
  margin-top: -1px;
  font-family: var(--font-open-sans);
  font-weight: 400;
  color: #03171a;
  font-size: 16px;
  letter-spacing: 0;
  line-height: 16px;
  white-space: nowrap;
}

.desktop .material-symbols {
  position: relative;
  width: 16px;
  height: 16px;
}

.desktop .vp-container {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  position: relative;
  flex: 0 0 auto;
}

.desktop .CTA {
  all: unset;
  box-sizing: border-box;
  padding: 12px 16px;
  border-radius: 4px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  flex: 0 0 auto;
  background-color: #016de1;
}

.desktop .text-wrapper-2 {
  position: relative;
  width: fit-content;
  margin-top: -1px;
  font-family: var(--font-open-sans);
  font-weight: 400;
  color: var(--grayscalewhite);
  font-size: 16px;
  letter-spacing: 0;
  line-height: 16px;
  white-space: nowrap;
}

.desktop .body {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
}

/* Standard hero retains original fixed padding */
.desktop .hero {
  display: flex;
  align-items: flex-start;
  gap: 5px;
  padding: 32px 24px 48px;
  position: relative;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
  background-image: url(./img/hero.png);
  background-size: cover;
  background-position: 50% 50%;
}
/* Responsive hero-full version only */
.desktop .hero-full {
  display: flex;
  align-items: flex-start;
  gap: 5px;
  --hero-pad-x: clamp(20px, 6vw, 120px);
  --hero-pad-top: clamp(32px, 6vh, 72px);
  --hero-pad-bottom: clamp(40px, 10vh, 120px);
  padding: var(--hero-pad-top) var(--hero-pad-x) var(--hero-pad-bottom);
  position: relative;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
  /* background: url('img/hero-bg.svg'); */
  /* background-size: cover;
  background-position: center; */
}

.desktop .text {
  display: flex;
  gap: 16px;
  flex: 1;
  flex-grow: 1;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
}

.desktop .div-4 {
  position: relative;
  width: 298px;
  height: 22px;
}

.desktop .overlap-group {
  position: relative;
  width: 296px;
  height: 22px;
}

.desktop .underline {
  position: absolute;
  width: 296px;
  height: 14px;
  top: 8px;
  left: 0;
  background-image: url(./img/vector.svg);
  background-size: 100% 100%;
}

.desktop .text-wrapper-3 {
  position: absolute;
  top: 0;
  left: 0;
  font-family: var(--font-open-sans);
  font-weight: 400;
  color: #03171a;
  font-size: 14px;
  letter-spacing: 3px;
  line-height: 16.8px;
  white-space: nowrap;
}

.desktop .div-5 {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  position: relative;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
}

.desktop .calculator {
  flex-direction: column;
  max-width: 475px;
  padding: 24px;
  background-color: #ffffff;
  border-radius: 10px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  position: relative;
  width: auto;
  flex: 0 0 auto;
}

.desktop .calc-content-container {
  align-self: stretch;
  display: flex;
  align-items: flex-start;
  gap: 24px;
  position: relative;
  width: 100%;
  flex: 0 0 auto;
}

.desktop .calc-input-container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  position: relative;
  flex: 1;
  flex-grow: 1;
}

.desktop .bold-text-heading {
  position: relative;
  align-self: stretch;
  margin-top: -1px;
  font-family: var(--font-bitter);
  font-weight: 400;
  color: #03171a;
  font-size: 16px;
  letter-spacing: 0;
  line-height: 19.2px;
}

.desktop .body-text {
  position: relative;
  font-family: var(--font-open-sans);
  font-weight: 400;
  color: #03171a;
  font-size: 14px;
  letter-spacing: 0;
  line-height: 19.6px;
}

.input-field {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  position: relative;
  flex: 1;
  flex-grow: 1;
}

input[type='text'] {
  font-size: 16px;
  border: 1px solid #ccc; /* Light grey border */
  border-radius: 4px;
  padding: 14px 20px;
  width: 200px;
  box-sizing: border-box;
  color: black;
  width: 100%;
}

input[type='text']:focus {
  outline: none;
  border-color: rgb(4, 108, 177);
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.1);
}

.desktop .text-wrapper-7 {
  position: relative;
  width: fit-content;
  margin-top: -1px;
  font-family: var(--font-open-sans);
  font-weight: 400;
  color: #03171a;
  font-size: 16px;
  letter-spacing: 0;
  line-height: 22.4px;
  white-space: nowrap;
}

.desktop .sm-body-text {
  position: relative;
  align-self: stretch;
  font-family: var(--font-open-sans);
  font-weight: 400;
  color: #03171a;
  font-size: 14px;
  letter-spacing: 0;
  line-height: 19.6px;
}

.desktop .additional-needs {
  position: relative;
  align-self: stretch;
  margin-top: -1px;
  font-family: var(--font-open-sans);
  font-weight: 400;
  color: #03171a;
  font-size: 16px;
  letter-spacing: 0;
  line-height: 19.2px;
}

.desktop .span {
  font-family: var(--font-open-sans);
  font-weight: 400;
  color: #03171a;
  font-size: 16px;
  letter-spacing: 0;
  line-height: 19.2px;
}

.desktop .line {
  margin-top: -1px;
  position: relative;
  align-self: stretch;
  width: 100%;
  height: 1px;
  object-fit: cover;
}

.sup-dollar-sign {
  font-size: 19px;
  font-weight: 800;
  font-family: var(--font-open-sans);
  position: relative;
  top: -10px;
}

.desktop .from-mo {
  position: relative;
  width: fit-content;
  margin-top: 0px;
  font-family: var(--font-open-sans);
  font-weight: 600;
  color: #03171a;
  font-size: 18px;
  letter-spacing: 0;
  line-height: 0px;
  margin: 0px;
}

.desktop .available-for {
  position: relative;
  width: fit-content;
  font-family: var(--font-open-sans);
  font-weight: 400;
  color: #03171a;
  font-size: 14px;
  letter-spacing: 0;
  line-height: 19.6px;
}

.desktop .body-text {
  position: relative;
  width: fit-content;
  font-family: var(--font-open-sans);
  font-weight: 400;
  color: #03171a;
  font-size: 14px;
  letter-spacing: 0;
  line-height: 19.6px;
  white-space: nowrap;
}

.desktop .text-wrapper-10 {
  font-family: var(--font-open-sans);
  font-weight: 400;
  color: #03171a;
  font-size: 18px;
  letter-spacing: 0;
  line-height: 25.2px;
}

.desktop .text-wrapper-11 {
  font-size: 24px;
  line-height: 33.6px;
}

.desktop .btn {
  all: unset;
  box-sizing: border-box;
  padding: 20px 48px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  flex: 0 0 auto;
  background-color: #016de1;
}

.desktop .btn-text {
  position: relative;
  width: fit-content;
  margin-top: -1px;
  font-family: var(--font-open-sans);
  font-weight: 400;
  color: #ffffff;
  font-size: 16px;
  text-align: center;
  letter-spacing: 0;
  line-height: 16px;
  white-space: nowrap;
}

.desktop .payment-text {
  position: relative;
  width: fit-content;
  margin-top: -1px;
  font-family: var(--font-bitter);
  font-weight: 400;
  color: black;
  font-size: 32px;
  text-align: center;
  letter-spacing: 0;
  line-height: 16px;
  white-space: nowrap;
}

.desktop .div-8 {
  margin-top: 0x!important;
  display: inline-flex;
  align-items: flex-start;
  gap: 8px;
  position: relative;
  flex: 0 0 auto;
}

.desktop .mo-text {
  position: relative;
  width: fit-content;
  margin-top: -1px;
  font-family: var(--font-open-sans);
  font-weight: 400;
  color: #03171a;
  font-size: 18px;
  letter-spacing: 0;
  line-height: 16.8px;
  white-space: nowrap;
}

.desktop .text-link {
  display: inline-flex;
  gap: 1px;
  flex: 0 0 auto;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
}

.desktop .text-link-2 {
  position: relative;
  width: fit-content;
  margin-top: -1px;
  font-family: var(--font-open-sans);
  font-weight: 400;
  color: #016de1;
  font-size: 12px;
  letter-spacing: 0;
  line-height: 16.8px;
  white-space: nowrap;
}

.desktop .img {
  position: relative;
  align-self: stretch;
  width: 100%;
  height: 1px;
  object-fit: cover;
}

.desktop .value-props {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
  padding: 32px 24px;
  align-self: stretch;
  width: 100%;
  background-color: #d8f2ff;
  align-items: center;
  position: relative;
  flex: 0 0 auto;
}

.desktop .container {
  display: inline-flex;
  gap: 32px;
  align-items: center;
  position: relative;
  flex: 0 0 auto;
}

.desktop .material-check {
  position: relative;
  width: 24px;
  height: 24px;
}

.desktop .vp-text {
  position: relative;
  width: fit-content;
  font-family: var(--font-open-sans);
  font-weight: 400;
  color: #03171a;
  font-size: 16px;
  letter-spacing: 0;
  line-height: 22.4px;
  white-space: nowrap;
}

.desktop .trustpilot {
  display: flex;
  flex-direction: column;
  height: 117px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 32px 24px;
  position: relative;
  align-self: stretch;
  width: 100%;
  background: linear-gradient(
    45deg,
    rgba(0, 52, 82, 1) 0%,
    rgba(0, 39, 62, 1) 100%
  );
}

.desktop .frame {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  position: relative;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
}

.desktop .text-wrapper-15 {
  position: relative;
  width: fit-content;
  font-family: var(--font-open-sans);
  font-weight: 400;
  color: var(--grayscalewhite);
  font-size: 14px;
  letter-spacing: 0;
  line-height: 19.6px;
  white-space: nowrap;
}

.desktop .trustpilot-micro {
  display: inline-block;
  align-items: center;
  gap: 13px;
  position: relative;
  flex: 0 0 auto;
}

.desktop .text-wrapper-16 {
  color: var(--grayscalewhite);
  position: relative;
  width: fit-content;
  margin-top: -1px;
  font-family: var(--font-open-sans);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 0;
  line-height: 26px;
  white-space: nowrap;
}

.desktop .img-3 {
  position: relative;
  flex: 0 0 auto;
}

.desktop .element-reviews-on {
  position: relative;
  width: fit-content;
  margin-top: -1px;
  font-family: var(--font-open-sans);
  font-weight: 400;
  color: var(--grayscalewhite);
  font-size: 14px;
  letter-spacing: 0;
  line-height: 26px;
  white-space: nowrap;
}

.desktop .text-wrapper-17 {
  font-weight: 700;
}

.desktop .text-wrapper-18 {
  font-family: var(--font-open-sans);
  font-weight: 400;
  color: #ffffff;
  font-size: 14px;
  letter-spacing: 0;
  line-height: 26px;
}

.desktop .frame-2 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  position: relative;
  flex: 0 0 auto;
}

.desktop .shape {
  position: relative;
  width: 14px;
  height: 13.25px;
}

.desktop .text-wrapper-19 {
  position: relative;
  width: fit-content;
  margin-top: -1px;
  font-family: var(--font-open-sans);
  font-weight: 700;
  color: var(--grayscalewhite);
  font-size: 12px;
  letter-spacing: 0;
  line-height: 26px;
  white-space: nowrap;
}

.desktop .lenders {
  flex-direction: column;
  gap: 38px;
  padding: 60px 24px 0px;
  background-color: var(--grayscalewhite);
  display: flex;
  align-items: center;
  position: relative;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
}

.desktop .text-wrapper-20 {
  position: relative;
  align-self: stretch;
  margin-top: -1px;
  font-family: var(--font-open-sans);
  font-weight: 400;
  color: #03171a;
  font-size: 16px;
  text-align: center;
  letter-spacing: 0;
  line-height: 22.4px;
}

.logo-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 35px;
  padding: 20px;
}

.logo {
  flex: 1 1 100px;
  max-width: 150px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.logo img {
  width: 100%;
  height: auto;
}

.desktop .more {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 16px;
  position: relative;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
  background-color: var(--grayscalewhite);
  border-radius: 4px;
}

.desktop .text-wrapper-21 {
  position: relative;
  width: fit-content;
  margin-top: -1px;
  font-family: 'Open Sans', Helvetica;
  font-weight: 700;
  color: #016de1;
  font-size: 18px;
  letter-spacing: 0;
  line-height: 18px;
  white-space: nowrap;
}

.desktop .how-it-works {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  padding: 64px 24px 0px;
  position: relative;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
  background-color: #ebf8ff;
}

.desktop .heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  position: relative;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
}

.desktop .eyebrow {
  position: relative;
  width: 142px;
  height: 22px;
}

.desktop .overlap-group-2 {
  width: 140px;
  position: relative;
  height: 22px;
}

.desktop .eyebrow-2 {
  position: absolute;
  width: 140px;
  height: 14px;
  top: 8px;
  left: 0;
  background-image: url(./img/vector-1.svg);
  background-size: 100% 100%;
}

.desktop .text-wrapper-22 {
  position: absolute;
  top: 0;
  left: 0;
  font-family: var(--font-open-sans);
  font-weight: 700;
  color: #03171a;
  font-size: 14px;
  text-align: center;
  letter-spacing: 3px;
  line-height: 16.8px;
  white-space: nowrap;
}

.desktop .text-wrapper-23 {
  position: relative;
  align-self: stretch;
  font-family: var(--font-bitter);
  font-weight: 400;
  color: #03171a;
  font-size: 40px;
  text-align: center;
  letter-spacing: 0;
  line-height: 48px;
}

.desktop .how-it-works-container {
  display: flex;
  gap: 10px;
  align-self: stretch;
  width: 100%;
  align-items: center;
  position: relative;
  flex: 0 0 auto;
  margin-top: 30px;
  margin-bottom: 30px;
  max-width: 1300px;
  margin-left: auto;
  margin-right: auto;
}

.desktop .left-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 38px;
  position: relative;
  flex: 1;
  flex-grow: 1;
}

.desktop .step {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  position: relative;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
}

.desktop .icon {
  position: relative;
  width: 32px;
  height: 32px;
  background-color: #ebf8ff;
  border-radius: 16px;
}

.desktop .element {
  position: absolute;
  width: 6px;
  height: 13px;
  top: 10px;
  left: 13px;
}

.desktop .text-2 {
  display: flex;
  gap: 8px;
  padding: 4px 0px;
  flex: 1;
  flex-grow: 1;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
}

.desktop .text-wrapper-24 {
  position: relative;
  align-self: stretch;
  margin-top: -1px;
  font-family: var(--font-bitter);
  font-weight: 400;
  color: #03171a;
  font-size: 18px;
  letter-spacing: 0;
  line-height: 21.6px;
}

.desktop .element-2 {
  position: absolute;
  width: 9px;
  height: 13px;
  top: 9px;
  left: 11px;
}

.desktop .element-3 {
  position: absolute;
  width: 10px;
  height: 13px;
  top: 9px;
  left: 11px;
}

.desktop .accreditation {
  display: flex;
  flex-direction: column;
  height: auto;
  align-items: center;
  gap: 24px;
  padding: 60px 24px;
  position: relative;
  align-self: stretch;
  width: 100%;
  background-color: #ffffff;
}

.desktop .overlap-group-wrapper {
  position: relative;
  width: 226px;
  height: 22px;
}

.desktop .overlap-group-3 {
  width: 224px;
  position: relative;
  height: 22px;
}

.desktop .eyebrow-3 {
  position: absolute;
  width: 224px;
  height: 14px;
  top: 8px;
  left: 0;
  background-image: url(./img/vector-2.svg);
  background-size: 100% 100%;
}

.desktop .text-wrapper-25 {
  position: relative;
  flex: 1;
  align-self: stretch;
  font-family: var(--font-bitter);
  font-weight: 400;
  color: #03171a;
  font-size: 40px;
  text-align: center;
  letter-spacing: 0;
  line-height: 48px;
}

.desktop .text-wrapper-26 {
  position: relative;
  align-self: stretch;
  font-family: var(--font-open-sans);
  font-weight: 400;
  color: #03171a;
  font-size: 18px;
  text-align: center;
  letter-spacing: 0;
  line-height: 25.2px;
}

.desktop .frame-3 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  position: relative;
  flex: 0 0 auto;
}

.desktop .BBB {
  position: relative;
  width: 116px;
  height: 56px;
  object-fit: cover;
}

.desktop .let-s-encrypt {
  position: relative;
  width: 71px;
  height: 56px;
  object-fit: cover;
}

.desktop .image {
  position: relative;
  width: 73px;
  height: 56px;
  mix-blend-mode: multiply;
}

.desktop .equalhousinglender {
  position: relative;
  width: 51px;
  height: 56px;
  object-fit: cover;
}

.desktop .trustpilot-reviews {
  display: flex;
  flex-direction: column;
  height: auto;
  align-items: center;
  gap: 33px;
  padding: 120px 24px;
  position: relative;
  align-self: stretch;
  width: 100%;
  background-color: #ebf8ff;
}

.desktop .text-wrapper-27 {
  position: relative;
  align-self: stretch;
  margin-top: -1px;
  font-family: var(--font-bitter);
  font-weight: 400;
  color: #03171a;
  font-size: 40px;
  text-align: center;
  letter-spacing: 0;
  line-height: 48px;
}

.desktop .text-wrapper-28 {
  color: #000000;
  position: relative;
  width: fit-content;
  margin-top: -1px;
  font-family: var(--font-open-sans);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 0;
  line-height: 26px;
  white-space: nowrap;
}

.desktop .element-reviews-on-2 {
  position: relative;
  width: fit-content;
  margin-top: -1px;
  font-family: var(--font-open-sans);
  font-weight: 400;
  color: #000000;
  font-size: 14px;
  letter-spacing: 0;
  line-height: 26px;
  white-space: nowrap;
}

.desktop .text-wrapper-29 {
  font-family: var(--font-open-sans);
  font-weight: 400;
  color: #000000;
  font-size: 14px;
  letter-spacing: 0;
  line-height: 26px;
}

.desktop .text-wrapper-30 {
  position: relative;
  width: fit-content;
  margin-top: -1px;
  font-family: var(--font-open-sans);
  font-weight: 700;
  color: #000000;
  font-size: 12px;
  letter-spacing: 0;
  line-height: 26px;
  white-space: nowrap;
}

.desktop .frame-4 {
  display: inline-flex;
  align-items: flex-start;
  justify-content: center;
  gap: 31px;
  position: relative;
  flex: 0 0 auto;
  max-width: 100vw;
  overflow: hidden !important;
}

.desktop .review {
  width: 310px;
  border-radius: 6px;
  position: relative;
  height: 250px;
  background-color: #ffffff;
  overflow: hidden;
}

.desktop .text-wrapper-31 {
  position: absolute;
  top: 59px;
  left: 24px;
  font-family: var(--font-open-sans);
  font-weight: 700;
  color: #03171a;
  font-size: 16px;
  letter-spacing: 0;
  line-height: 22.4px;
  white-space: nowrap;
}

.desktop .text-wrapper-32 {
  position: absolute;
  width: 262px;
  top: 97px;
  left: 24px;
  font-family: var(--font-open-sans);
  font-weight: 400;
  color: #03171a;
  font-size: 14px;
  letter-spacing: 0;
  line-height: 19.6px;
}

.desktop .text-wrapper-33 {
  position: absolute;
  top: 205px;
  left: 24px;
  font-family: var(--font-open-sans);
  font-weight: 400;
  color: #03171a;
  font-size: 14px;
  letter-spacing: 0;
  line-height: 19.6px;
  text-decoration: underline;
  white-space: nowrap;
}

.desktop .stars-combination {
  gap: 4px;
  position: absolute;
  top: 24px;
  left: 24px;
  display: inline-flex;
  align-items: flex-start;
}

.desktop .review-2 {
  width: 166px;
  border-radius: 6px 0px 0px 6px;
  position: relative;
  height: 250px;
  background-color: #ffffff;
  overflow: hidden;
}

.desktop .right-arrow {
  position: relative;
  width: 40px;
  height: 40px;
  margin-bottom: -19px;
  background-color: var(--grayscalewhite);
  border-radius: 20px;
  box-shadow: var(--blue-medium-shadow);
}

.desktop .material-symbols-2 {
  position: absolute;
  width: 28px;
  height: 28px;
  top: 6px;
  left: 6px;
}

.desktop .FAQ {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 120px 24px;
  position: relative;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
  background-color: var(--grayscalewhite);
}

.desktop .eyebrow-4 {
  position: relative;
  width: 300px;
  height: 22px;
}

.desktop .frame-5 {
  position: absolute;
  width: 298px;
  height: 14px;
  top: 8px;
  left: 0;
  background-image: url(./img/vector-3.svg);
  background-size: 100% 100%;
}

.desktop .text-wrapper-34 {
  position: absolute;
  top: 0;
  left: 2px;
  font-family: var(--font-open-sans);
  font-weight: 400;
  color: #03171a;
  font-size: 14px;
  text-align: center;
  letter-spacing: 3px;
  line-height: 16.8px;
  white-space: nowrap;
}

.accordion {
  border-bottom: 1px solid #ccc;
  padding: 24px 0;
  cursor: pointer;
}

.accordion-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.label {
  font-weight: bold;
  font-size: 16px;
}

.icon {
  width: 24px;
  height: 24px;
  transition: transform 0.3s ease;
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  font-size: 14px;
  color: #444;
}

.accordion.open .accordion-content {
  max-height: 200px; /* adjust as needed */
  margin-top: 10px;
}

.accordion.open .icon {
  transform: rotate(180deg);
}

.modal {
  display: none;
  position: fixed;
  z-index: 999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.6);
}

/* Modal content box */
.modal-content {
  background-color: #fff;
  margin: 5% auto;
  padding: 20px 30px;
  border-radius: 8px;
  width: 90%;
  max-width: 600px;
  max-height: 80vh;
  overflow-y: auto;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
  font-size: 14px;
  text-align: left;
}

.modal-content h2 {
  text-align: left;
  margin-bottom: 20px;
}

/* Close button */
.close-button {
  float: right;
  font-size: 28px;
  font-weight: bold;
  color: #888;
  cursor: pointer;
}

.close-button:hover {
  color: #000;
}

.btn.disabled {
  pointer-events: none; /* disables clicking */
  opacity: 0.6; /* dims the link */
  cursor: not-allowed;
}

.input-error {
  border: 2px solid red !important;
}

.trustpilot-micro {
  overflow: hidden;
}
