/* Modern Header Styles */
.site-header {
  background: #fff;
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

/* Top Bar Styles */
.top-bar {
  background: #f8f9fa;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.top-phone-link {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: #555;
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.2s ease;
}

.top-phone-link:hover {
  color: #2a9a49;
}

.top-phone-icon {
  width: 16px;
  height: 16px;
  margin-right: 8px;
  opacity: 0.7;
}

.top-language-selector {
  border: 1px solid rgba(0, 0, 0, 0.1);
  background: transparent;
  font-size: 0.9rem;
  color: #555;
  padding: 4px 8px;
  border-radius: 4px;
  cursor: pointer;
  appearance: none;
  background-image: url("../images/globe.png");
  background-repeat: no-repeat;
  background-position: 8px center;
  background-size: 14px;
  padding-left: 28px;
  transition: all 0.2s ease;
}

.top-language-selector:hover {
  border-color: rgba(0, 0, 0, 0.2);
}

/* Main Header Styles */
.main-header {
  background: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
}

.navbar {
  padding: 1rem 0;
  margin-bottom: 0 !important;
}

.navbar-brand {
  flex: 0 0 auto;
  padding: 0px !important;
  display: flex;
  align-items: center;
}

.navbar-brand a {
  display: block;
}

.navbar-brand img.logo {
  height: 45px;
  width: auto;
  object-fit: contain;
}

.navbar-actions {
  gap: 1.5rem;
}

.primary-button {
  background: #2a9a49;
  color: #fff;
  padding: 0.8rem 1.8rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1.25rem;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 2px solid #2a9a49;
  box-shadow: 0 2px 4px rgba(11, 114, 241, 0.15);
}

.primary-button:hover {
  background: #fff;
  color: #2a9a49;
  transform: translateY(-1px);
  box-shadow: 0 4px 8px rgba(11, 114, 241, 0.2);
}

/* Mobile Styles */
.mobile-contact-bar {
  background: #2a9a49;
  padding: 0.7rem 0;
}

.mobile-phone-link {
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: #fff;
  font-weight: 500;
  gap: 8px;
}

.mobile-phone-link img {
  width: 18px;
  height: 18px;
  filter: brightness(0) invert(1);
}

.mobile-phone-link span {
  font-size: 1rem;
}

.mobile-language-selector {
  background: transparent;
  border: 1px solid rgba(0, 0, 0, 0.15);
  color: #555;
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 0.9rem;
  appearance: none;
  background-image: url("../images/globe.png");
  background-repeat: no-repeat;
  background-position: 8px center;
  background-size: 14px;
  padding-left: 28px;
}

/* Responsive Adjustments */
@media (max-width: 991px) {
  .navbar-brand img.logo {
    height: 38px;
  }

  .primary-button {
    padding: 0.7rem 1.4rem;
    font-size: 0.9rem;
  }
}

@media (max-width: 576px) {
  .navbar-brand img.logo {
    height: 32px;
  }

  .primary-button {
    padding: 0.6rem 1.2rem;
    font-size: 0.85rem;
  }
}

.navbar-contact {
  flex: 0 0 auto;
}

.phone-link {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: #333;
  font-weight: 500;
  transition: color 0.2s ease;
}

.phone-link:hover {
  color: #2a9a49;
}

.phone-icon {
  margin-right: 0.5rem;
}

.phone-svg {
  width: 20px;
  height: 20px;
}

.phone-number {
  font-size: 1rem;
}

.navbar-lang {
  flex: 0 0 auto;
}

.language-selector {
  border: none;
  background: transparent;
  font-size: 1rem;
  color: #333;
  padding: 0.5rem;
  cursor: pointer;
  appearance: none;
  background-image: url("../images/globe.png");
  background-repeat: no-repeat;
  background-position: left center;
  background-size: 20px;
  padding-left: 25px;
}

.navbar-cta {
  flex: 0 0 auto;
}

.cta-button {
  background: #2a9a49;
  color: #fff;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s ease;
}

.cta-button:hover {
  background: #094a28;
  color: #fff;
  transform: translateY(-1px);
}

/* Mobile Header */
.mobile-header {
  background: #2a9a49;
  padding: 0.5rem 0;
}

.mobile-phone {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: #fff;
}

.mobile-phone img {
  width: 20px;
  height: 20px;
  margin-right: 0.5rem;
}

.mobile-phone span {
  font-size: 0.9rem;
  font-weight: 500;
}

.mobile-language-selector {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #fff;
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
}

/* Responsive adjustments */
@media (max-width: 991px) {
  .navbar {
    flex-wrap: wrap;
  }

  .navbar-brand {
    flex: 1;
  }

  .navbar-contact {
    display: none;
  }

  .navbar-lang {
    order: 2;
  }

  .navbar-cta {
    width: 100%;
    margin-top: 1rem;
    text-align: center;
  }
}

@media only screen and (min-width: 660px) {
  a.button-link {
    font-size: 14px;
    font-weight: 700;
    font-style: normal;
    line-height: 20px;
    background-color: #2a9a49;
    border-radius: 7px 7px 7px 7px;
    padding: 18px 20px 18px 20px;
    color: #fff;
    display: inline-block;
  }

  img.logo1 {
    max-width: 22vw;
  }
}

.ui-state-highlight,
.ui-widget-content .ui-state-highlight,
.ui-widget-header .ui-state-highlight {
  border: 1px solid #81817e !important;
  background: #7cb0e9 !important;
  color: white !important;
}

@media only screen and (max-width: 660px) {
  a.button-link {
    font-size: 8px;
    font-weight: 700;
    font-style: normal;
    background-color: #2a9a49;
    border-radius: 7px 7px 7px 7px;
    padding: 14px 20px 14px 20px;
    color: #fff;
    display: inline-block;
  }

  span.phone-txt {
    font-size: 5px;
    line-height: 0px;
    color: #000;
    font-weight: bold;
  }

  select.goog-te-combo {
    border: 0;
    font-size: 14px;
    color: #32373c;
    background: url("../images/globe.png") no-repeat left;
    background-size: 17px;
    padding-left: 15px !important;
    width: 60px !important;
  }

  .cards {
    background-image: url("../images/cards-bg.png");
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 70px 0px 120px 0px;
  }

  .spacer {
    min-height: 0px;
  }

  .phone-1 {
    width: 18px;
  }

  p.box-content {
    font-size: 12px;
    line-height: 17px;
    color: #393939;
  }

  .quote-area {
    padding: 100px 0px 70px 0px;
    background: #2a9a49;
  }

  .col-new {
    width: 25%;
    /* width: 20%; */

    font-size: 8px;
  }

  img.logo1 {
    max-width: 25vw;
  }
}

@media only screen and (max-width: 450px) {
  .a.button-link {
    padding: 0px 0px 0px 0px;
    font-size: 1px;
  }

  .col-new1 {
    width: 35%;
    display: inline-block;
  }

  .col-new2 {
    width: 65%;
  }

  .phone-new {
    padding: 1px;
    font-size: 2px;
  }
}

html {
  overflow-x: hidden;
}

body {
  margin: 0;
  font-family: "Montserrat", sans-serif;
  overflow-x: hidden;
}

* {
  margin: 0;
}

.button {
  border: none;
  color: white;
  padding: 5px 16px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  transition-duration: 0.4s;
  cursor: pointer;
  line-height: 20px;
  margin-top: 3px !important;
}

.b-hover:hover {
  color: white;
  background-color: #393939;
}

a {
  text-decoration: none;
}

/* header */
img.logo {
  max-width: 300px;
}

a.button-link:hover {
  background-color: #393939;
}

span.phone-txt {
  font-size: 16px;
  line-height: 20px;
  color: #000;
  font-weight: bold;
}

select.goog-te-combo {
  border: 0;
  font-size: 14px;
  color: #32373c;
  background: url("../images/globe.png") no-repeat left;
  background-size: 17px;
  padding-left: 20px !important;
  width: 71px !important;
}

/* Hero */
label {
  padding: 0.25rem 0 0.5rem;
  display: block;
  margin: 0;
  font-size: 0.875rem;
  font-weight: inherit;
  line-height: 1;
  color: inherit;
}

label.contain-one {
  background: #ffffff;
  box-shadow: 0px 2.60568px 7.16561px rgb(201 201 201 / 25%);
  border-radius: 5px;
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 20px;
  color: #818181;
  text-align: center;
}

.contain-one {
  display: block;
  position: relative;
  padding-left: 35px;
  margin-bottom: 12px;
  padding-top: 6px;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.contain-one input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}

#checke .chkmark {
  background-color: #2a9a49;
}

.chkmark {
  position: absolute;
  top: 10px;
  left: 12px;
  height: 12px;
  width: 12px;
  background-color: #fff;
  border-radius: 50%;
  border: 0.65px solid #d9d9d9;
}

.button1 {
  background-color: #2a9a49;
  color: #fff;
  border-radius: 5px;
  z-index: 99;
  position: relative;
}

h1.hero-title {
  font-size: 40px;
  font-weight: bold;
  color: #393939;
  line-height: 48px;
}

p.hero-para-1 {
  font-size: 20px;
  line-height: 24px;
  color: #000;
  font-style: italic;
}

a.hero-btn-1 {
  font-size: 16px;
  font-weight: 700;
  font-style: normal;
  line-height: 20px;
  background-color: #2a9a49;
  border-radius: 7px 7px 7px 7px;
  color: #fff;
  padding: 16px 35px 16px 35px;
  display: inline-block;
  margin-bottom: 20px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

a.hero-btn-2 {
  font-size: 16px;
  font-weight: 700;
  font-style: normal;
  line-height: 20px;
  background-color: #fee91f;
  border-radius: 7px 7px 7px 7px;
  color: #393939;
  padding: 16px 10px 16px 10px;
  margin: 0px 0px 0px 10px;
  display: inline-block;
  text-overflow: ellipsis;
  white-space: nowrap;
}

a.hero-btn-1-new {
  font-size: 15px;
  font-weight: 600;
  font-style: normal;
  line-height: 20px;
  background-color: #2a9a49;
  border-radius: 7px 7px 7px 7px;
  color: #fff;
  padding: 16px 35px 16px 35px;
  display: inline-block;
  /* margin-bottom: 20px; */
  text-overflow: ellipsis;
  white-space: nowrap;
}

a.hero-btn-2-new {
  font-size: 14px;
  font-weight: 600;
  font-style: normal;
  line-height: 20px;
  background-color: #fee91f;
  border-radius: 7px 7px 7px 7px;
  color: #393939;
  padding: 16px 10px 16px 10px;
  /* margin: 0px 0px 0px 10px; */
  display: inline-block;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.hero-img img {
  width: 78%;
}

.hero-img {
  margin-top: -78px;
}

/* Image Box */
.img-box {
  background: #c1ddff;
  padding: 36px 0px;
  margin-top: -83px;
  z-index: 99;
  position: relative;
}

p.box-content {
  font-size: 14px;
  line-height: 17px;
  color: #393939;
}

.img-box img {
  max-width: 29px;
  margin-right: 10px;
}

.img-box figure,
.img-box p {
  margin-bottom: 0;
}

/* cards */
.cards {
  background-image: url("../images/cards-bg.png");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 55px 0px 100px 0px;
}

h2.card-heading {
  font-size: 40px;
  line-height: 49px;
  font-weight: 700;
  color: #393939;
}

h3.card-subheading {
  font-size: 25px;
  color: #393939;
  line-height: 30px;
  font-weight: 400;
}

.cards .card {
  box-shadow: 0px 4px 17px 0px rgb(124 124 124 / 25%);
  border: 0;
  border-radius: 11px 11px 11px 11px;
  background: #fff;
  padding: 33px 0px 33px 0px;
}

.cards img.card-img-top {
  width: 96px;
  height: 96px;
}

h4.card-title {
  color: #393939;
  font-size: 20px;
  line-height: 24px;
  font-weight: 400;
}

.card-review {
  font-size: 18px;
  line-height: 24px;
  color: #393939;
}

.card-review a {
  font-size: 16px;
  line-height: 24px;
  color: #393939;
  text-decoration: underline;
}

/* two col */
.two-col {
  background: #f0f7ff;
}

.two-col img.card-img-top {
  width: 52px;
  height: 52px;
}

.notice {
  padding: 48px 85px 27px 85px;
  box-shadow: 0px 4px 17px 0px rgb(124 124 124 / 25%);
  background: #fff;
  border-radius: 11px 11px 11px 11px;
}

.two-col .card {
  border: 0;
}

h3.two-col-subheading {
  font-size: 20px;
  line-height: 24px;
  color: #2a9a49;
  font-weight: bold;
  text-align: center;
}

.two-col-heading {
  font-size: 40px;
  line-height: 49px;
  color: #393939;
  font-weight: bold;
  text-align: center;
}

.two-col h4.card-title {
  color: #393939;
  font-size: 24px;
  line-height: 30px;
  font-weight: bold;
  margin-bottom: 24px;
}

.two-col .card-subtitle {
  color: #393939;
  font-size: 16px;
  line-height: 20px;
  margin-bottom: 24px;
}

.right-col {
  padding: 85px 122px 44px 122px;
}

.left-col {
  background-image: url("../images/Helping-You-Move-Beyond-Debt-3-1.png");
  background-position: bottom center;
  background-repeat: no-repeat;
  background-size: contain;
}
.personal-loan-for-your {
  color: rgb(0, 119, 255);
  font-size: 3rem;
  font-weight: bolder;
  margin-top: 10%;
  text-align: center;
  margin-left: 16%;
  padding-right: 16%;
}
.spacer {
  min-height: 951px;
}

/* form area */
.quote-area {
  padding: 80px 0px 70px 0px;
  background: #2a9a49;
}

.quote-area-lists {
  display: flex;
  align-items: center;
  margin-bottom: 30px;
}

figure.quote-area-lists-img {
  margin-right: 37px;
  margin-bottom: 0;
}

.quote-area-lists-content {
  font-size: 30px;
  line-height: 36px;
  font-weight: 700;
  color: #fff;
}

h3.quote-subheading {
  font-size: 20px;
  line-height: 24px;
  color: #ffffff;
  font-weight: bold;
}

h2.quote-heading {
  font-size: 45px;
  line-height: 58px;
  color: #ffffff;
  font-weight: bold;
}

.form-submit-after {
  background: #ffffff;
  border-radius: 20px;
  display: none;
}

.form-submit-after-es {
  background: #ffffff;
  border-radius: 20px;
  display: none;
}

.form-area {
  background: #ffffff;
  border-radius: 20px;
  padding: 45px;
}

h2.form-area-heading {
  font-size: 25px;
  line-height: 30px;
  font-weight: 700;
  color: #393939;
}

h3.form-area-subheading {
  font-size: 21px;
  line-height: 25px;
  color: #000;
  font-weight: 400;
}

.form-control {
  padding: 13px 10px;
  background: #f5f5f5;
  border-radius: 5px;
  border: 0;
  margin-bottom: 10px;
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 400;
  font-size: 12px;
  line-height: 15px;

  color: #bcbcbc;
}

.form-control-3 {
  /* padding: 13px 10px; */
  /* background: #f5f5f5; */
  /* border-radius: 5px; */
  /* border: 0; */
  padding: 14px;
  border-left: none;
  border-top: none;
  border-right: none;
  border-bottom: 1px solid #d2d2d2;
  margin-bottom: 10px;
  font-family: "Montserrat";
  font-style: normal;
  width: 100%;
  /* font-weight: 400; */
  font-size: 14px;
  line-height: 15px;

  color: #32373c;
}

.form-control-new {
  padding: 13px 10px;
  background: #f5f5f5;
  /* border-radius: 5px; */
  border: 0;
  margin-bottom: 10px;
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 400;
  font-size: 12px;
  line-height: 15px;

  color: #bcbcbc;
}

/* button.sbt {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 700;
  font-size: 21px;
  line-height: 26px;
  color: #393939;
  background: #fee91f;
  border-radius: 7px;
  text-align: center;
  width: 100%;
  padding: 15px;
} */

button.sbt {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 700;
  font-size: 21px;
  line-height: 26px;
  color: #393939;
  background: #fee91f;
  border-radius: 7px;
  text-align: center;
  width: 100%;
  padding: 15px;

  /* Add box-shadow to create a raised effect */
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.2);
}

p.form-txt {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 700;
  font-size: 12px;
  line-height: 15px;
  text-align: center;
  color: #000000;
  text-align: center;
  margin-top: 15px;
}

p.form-txt-para {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 500;
  font-size: 12px;
  line-height: 15px;
  text-align: center;
  color: #000000;
  text-align: center;
  margin-top: 15px;
}

/* testimonial area  */

.testimonial-area {
  padding: 90px 0px 90px 0px;
  background-color: #f0f7ff;
}

.testimonial-area .card {
  padding: 0px 30px 45px 30px;
  box-shadow: 0px 4px 17px 0px rgb(124 124 124 / 25%);
  background-color: #fff;
  border: 0;
  align-items: center;
  min-height: 260px;
}

.testimonial-area img.card-img-top {
  width: 82px;
  margin-top: -43px;
}

.testimonial-area h4.card-title {
  color: #393939;
  font-size: 16px;
  line-height: 20px;
  font-weight: 400;
  margin-bottom: 34px;
}

.testimonial-area .card-subtitle {
  font-size: 14px;
  line-height: 20px;
  font-weight: 700;
  color: #2a9a49;
}

.testimonial-area .card:hover {
  transition: all 0.5s ease-in-out;
  transform: scale(1.1);
  z-index: 1;
}

h2.testimonial-heading {
  font-size: 48px;
  line-height: 58px;
  color: #393939;
  font-weight: bold;
  max-width: 800px;
  margin: auto;
}

h3.testimonial-subheading {
  font-size: 16px;
  font-weight: 400;
  line-height: 20px;
  color: #393939;
}

/* counter */
.counts {
  /* max-width: 1129px; */
  margin: auto;
  margin-top: 50px;
}

.custom-col {
  /* margin: 14px 14px 14px 14px;
  padding: 28px 52px 28px 52px;*/
  background-color: #c1ddff;
  border-radius: 7px 7px 7px 7px;
  transition: box-shadow 0.3s;
}

.custom-col:hover {
  box-shadow: 0px 4px 17px 0px rgba(124, 124, 124, 0.5);
}

h3.counter-title {
  font-size: 64px;
  line-height: 78px;
  font-weight: 700;
  color: #2a9a49;
}

p.counter-info {
  font-size: 16px;
  line-height: 20px;
  color: #393939;
}

/* faq */
.faq-area {
  padding: 35px 52px 35px 52px;
  max-width: 1084px;
  margin: auto;
  background-color: #c1ddff;
  border-radius: 7px 7px 7px 7px;
  transition: box-shadow 0.3s;
}

.faq-area:hover {
  box-shadow: 0px 4px 17px 0px rgba(124, 124, 124, 0.5);
}

h2.faq-heading {
  font-size: 60px;
  line-height: 78px;
  color: #8f8f8f;
  font-weight: bold;
}

.accordion-button {
  background-color: #fff0 !important;
  font-size: 18px;
  font-weight: bold;
}

.accordion-button:not(.collapsed) {
  color: #2a9a49;
  box-shadow: none !important;
}

.accordion-item {
  border: 0;
  border-bottom: 1px solid #000000;
  background-color: transparent;
  border-radius: 0 !important;
}

.accordion-button::after {
  background-image: url("data:image/svg+xml,%3csvg viewBox='0 0 16 16' fill='%23333' xmlns='http://www.w3.org/2000/svg'%3e%3cpath fill-rule='evenodd' d='M8 0a1 1 0 0 1 1 1v6h6a1 1 0 1 1 0 2H9v6a1 1 0 1 1-2 0V9H1a1 1 0 0 1 0-2h6V1a1 1 0 0 1 1-1z' clip-rule='evenodd'/%3e%3c/svg%3e");
  transform: scale(0.7) !important;
}

.accordion-button:not(.collapsed)::after {
  background-image: url("data:image/svg+xml,%3csvg viewBox='0 0 16 16' fill='%23333' xmlns='http://www.w3.org/2000/svg'%3e%3cpath fill-rule='evenodd' d='M0 8a1 1 0 0 1 1-1h14a1 1 0 1 1 0 2H1a1 1 0 0 1-1-1z' clip-rule='evenodd'/%3e%3c/svg%3e");
}

a.see-more {
  fill: #000000;
  color: #000000;
  background-color: #fee91f;
  font-size: 16px;
  padding: 15px 30px;
  border-radius: 4px;
  text-align: center;
  font-weight: 600;
  line-height: 16px;
  width: 100%;
  margin-top: 150px;
}

a.see-more:hover {
  color: #ffffff;
  background-color: #333333;
  border-color: #6c6c6c;
}

/* loan */
.loan {
  background: #2a9a49;
  padding: 66px 0px 94px 0px;
}

h2.loan-title {
  font-size: 48px;
  line-height: 58px;
  color: #ffffff;
  font-weight: bold;
  max-width: 758px;
  margin: auto;
  margin-bottom: 30px;
}

a.loan-btn-1 {
  font-size: 16px;
  font-weight: 700;
  font-style: normal;
  line-height: 20px;
  background-color: #fee91f;
  border-radius: 7px 7px 7px 7px;
  color: #393939;
  padding: 16px 50px 16px 50px;
}

/* multistep form */

h1.hero2-title {
  font-weight: 700;
  font-size: 41px;
  line-height: 50px;
  text-align: center;
  color: #393939;
}

h1.hero2-title span {
  color: #2a9a49;
}

h2.hero2-title {
  font-weight: 700;
  /* font-size: 41px; */
  font-size: 230%;

  line-height: 50px;
  text-align: center;
  color: #393939;
  /* margin: auto; */
}

h2.hero2-title span {
  color: #2a9a49;
}

p.hero2-para-1 {
  font-weight: 400;
  font-size: 22px;
  line-height: 27px;
  text-align: center;
  color: #393939;
}

/*form styles*/
#signUpForm {
  max-width: 600px;
  margin: auto;
}

button#app-btn {
  background: #818a91;
  border-radius: 7px;
  font-weight: 700;
  font-size: 16px;
  line-height: 20px;
  color: #ffffff;
  padding: 15px 41px;
  border: 0;
  width: 35%;
}

h6.code-title {
  font-weight: 700;
  font-size: 16px;
  line-height: 20px;
  color: #393939;
}

p.code-txt {
  font-weight: 400;
  font-size: 14px;
  line-height: 17px;
  color: #393939;
}

::-webkit-input-placeholder {
  /* Edge */
  opacity: 1;
  color: #a7a3a3;
}

:-ms-input-placeholder {
  /* Internet Explorer 10-11 */
  opacity: 1;
  color: #a7a3a3;
}

::placeholder {
  opacity: 1;
  color: #a7a3a3;
}

input#rev-code {
  background: #eef5ff !important;
  width: 60% !important;
  margin-right: 20px;
}

.box {
  border: 1px solid #c9cdd1;
  border-radius: 7px;
  padding: 40px;
}

#signUpForm .form-header {
  justify-content: space-between;
  margin: 50px 0px;
  display: flex;
}

span.stepIndicator:nth-child(1):before {
  /* left: 0 !important; */
}

span.stepIndicator:nth-child(4):before {
  /* right: 0 !important;
    left: auto !important; */
}

input#score {
  float: left !important;
  width: 20px !important;
  margin-top: 3px !important;
}

label.score-lbl {
  max-width: 351px;
}

#signUpForm .form-header .stepIndicator {
  position: relative;
  margin: 0 2px;
  background-color: #ffffff;
  border: none;
  border-radius: 50%;
  /* display: inline-block; */
  vertical-align: middle;
  text-align: center;
  /* padding: 10px 21px; */
  border: 2px solid #cccccc;
  z-index: 99;
  font-style: normal;
  font-weight: 600;
  font-size: 24px;
  line-height: 57px;
  /* display: flex; */
  align-items: center;
  text-align: center;
  text-transform: uppercase;
  color: #cccccc;
  width: 60px;
  height: 60px;
}

#signUpForm .form-header .stepIndicator.active {
  border: 2px solid #2a9a49;
  color: #2a9a49;
}

#signUpForm .form-header .stepIndicator.finish {
  font-weight: 600;
  color: #2a9a4900;
  background-image: url("../images/Group-1.svg");
  background-position: center;
  background-size: cover;
  border: 2px solid #2a9a49;
}

/* #signUpForm .form-header .stepIndicator::before {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -97%;
    transform: translateX(-50%);
    z-index: 9;
    width: 60px;
    height: 60px;
    background-color: #fff;
    border-radius: 50%;
    border: 2px solid #CCCCCC;
} */
#signUpForm .form-header .stepIndicator.active::before {
  background-color: transparent;
  border: 2px solid #2a9a49;
}

#signUpForm .form-header .stepIndicator.finish::before {
  background-color: #009688;
  border: 2px solid #cccccc;
}

#signUpForm .form-header .stepIndicator::after {
  content: "";
  position: absolute;
  left: 100%;
  bottom: 50%;
  width: 374%;
  height: 2px;
  background-color: #cccccc;
}

#signUpForm .form-header .stepIndicator.active::after {
  background-color: #2a9a49;
}

#signUpForm .form-header .stepIndicator.finish::after {
  background-color: #2a9a49;
}

#signUpForm .form-header .stepIndicator:last-child:after {
  display: none;
}

#signUpForm input {
  padding: 14px 19px;
  width: 100%;
  border: 0;
  background: #f5f5f5;
  border-radius: 7px;
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 22px;
  color: #030303;
  margin-bottom: 19px;
}

#signUpForm input:focus {
  border: 1px solid #009688;
  outline: 0;
}

#signUpForm select {
  word-wrap: normal;
  background: #f5f5f5;
  border-radius: 7px;
  border: 0;
  width: 100%;
  height: 50px;
  padding: 14px 19px;
  margin-bottom: 19px;
  appearance: none;
  background-image: url("../images/Vector.svg");
  background-repeat: no-repeat;
  background-position: 96% 50%;
}

p.form-notice {
  background: #f0f7ff;
  border-radius: 7px;
  font-weight: 400;
  font-size: 14px;
  line-height: 17px;
  /* text-align: center; */
  color: #393939;
  padding: 20px;
}

#signUpForm input.invalid {
  border: 1px solid #ffaba5;
}

#signUpForm .step {
  display: none;
}

#signUpForm .form-footer {
  overflow: auto;
  gap: 20px;
  justify-content: center;
}

#signUpForm label {
  font-weight: 400;
  font-size: 14px;
  line-height: 17px;
  color: #393939;
  margin-bottom: 11px;
  padding: 0;
}

#signUpForm .form-footer button {
  border: none;
  padding: 15px 65px 15px 35px;
  cursor: pointer;
  margin-top: 5px;
  background: #2a9a49;
  border-radius: 7px;
  font-weight: 700;
  font-size: 16px;
  line-height: 20px;
  color: #ffffff;
  position: relative;
}

#signUpForm .form-footer button:hover {
  opacity: 0.8;
}

#signUpForm .form-footer #prevBtn {
  color: #fff;
  background: #818a91;
  border-radius: 7px;
}

button#nextBtn:after {
  content: "";
  background-image: url("../images/arrow-right.svg");
  background-repeat: no-repeat;
  height: 20px;
  width: 20px;
  right: 34px;
  position: absolute;
  background-size: contain;
  background-position: center;
}

button#prevBtn {
  padding: 15px 35px 15px 65px !important;
}

button#prevBtn:before {
  content: "";
  background-image: url("../images/arrow-right.svg");
  background-repeat: no-repeat;
  height: 20px;
  width: 20px;
  position: absolute;
  background-size: contain;
  background-position: center;
  left: 34px;
  transform: rotate(180deg);
}

/* footer */

.footer {
  padding: 40px 0px 50px 0px;
  background-color: #f0f7ff;
}

img.footer-logo {
  width: 100%;
}

img.footer-img {
  width: 100%;
  margin-left: 5%;
}

img.form-img {
  width: 20%;
}
img.form-img-bbb-top {
  width: 35%;
  margin-left: 2%;
}
img.form-img-bbb {
  width: 30%;
}
.social-share img {
  width: 26px;

  /* width: 32px; */
  /* height: 30px; */
}

.social-share {
  text-align: right;
}

p.privacy {
  color: #7a7a7a;
  font-size: 18px;
  line-height: 24px;
  font-weight: bold;
}

p.copywrite {
  font-size: 16px;
  line-height: 20px;
  color: #cccccc;
  padding-left: 5px;
  padding-right: 5px;
}

.form-footer {
  background-color: transparent !important;
}

.form-footer img.footer-logo {
  width: 164px;
}

hr {
  border: 1px solid #e9e9e9;
  border-top: 0;
  opacity: 1;
  margin: 0;
}

p.dis {
  font-weight: 700;
  font-size: 16px;
  line-height: 20px;
  text-align: center;
  color: #cccccc;
}

p.declimer {
  font-weight: 400;
  font-size: 16px;
  line-height: 20px;
  text-align: center;
  color: #cccccc;
}

.area-lang-es {
  display: none;
}

@media only screen and (max-width: 1024px) and (min-width: 768px) {
  .hero .col-lg-5,
  .hero .col-lg-7,
  .testimonial-box .col-lg-4 {
    flex: 0 0 auto;
    width: 100% !important;
  }

  .cards .col-lg-3 {
    flex: 0 0 auto;
    width: 50%;
    margin-bottom: 20px;
  }

  .two-col .left-col,
  .two-col .right-col,
  .quote-area .custom-q-col {
    width: 100%;
  }

  .testimonial-area .card {
    margin-bottom: 3rem;
  }

  .counts {
    margin-top: 0;
  }

  h3.counter-title {
    font-size: 48px;
    line-height: 58px;
  }

  h2.quote-heading {
    font-size: 40px;
    line-height: 50px;
  }

  .quote-area-lists-content {
    font-size: 24px;
    line-height: 34px;
  }

  .quote-area-lists-img img {
    width: 54px;
  }

  h2.testimonial-heading {
    font-size: 40px;
    line-height: 50px;
  }

  .two-col-heading {
    font-size: 32px;
    line-height: 42px;
  }
}

@media only screen and (max-width: 767px) {
  button#app-btn {
    padding: 15px 25px;
    width: 34%;
  }

  .social-share {
    /* text-align: center; */
    /* margin-top: 20px; */
    margin-top: 12px;
  }

  h3.counter-title {
    font-size: 36px;
    line-height: 46px;
  }

  h2.quote-heading {
    font-size: 40px;
    line-height: 50px;
  }

  .quote-area-lists-content {
    font-size: 24px;
    line-height: 34px;
  }

  .quote-area-lists-img img {
    width: 54px;
  }

  h2.testimonial-heading {
    font-size: 32px;
    line-height: 42px;
  }

  .right-col {
    padding: 85px 24px 44px 24px;
  }

  .two-col-heading {
    font-size: 24px;
    line-height: 34px;
  }

  .box-wraper {
    margin-bottom: 10px;
  }

  /* select.goog-te-combo {
    margin-top: 20px;
  } */
  /* .phone {
    margin-top: 20px;
  } */
  .cards .col-lg-3 {
    margin-bottom: 20px;
  }

  .testimonial-area .card {
    /* margin-bottom: 83px; */
    margin-bottom: 3rem;
  }
}

@media only screen and (max-width: 550px) {
  input#rev-code {
    width: 100% !important;
    margin-right: 0px;
  }

  button#app-btn {
    padding: 15px 25px;
    width: 70%;
  }
}

@media only screen and (max-width: 448px) {
  #signUpForm .form-header .stepIndicator::after {
    width: 186%;
  }
}

#customize-view #small-screen #logoplusbtn #itm-logo2 a img#logo-img {
  width: 100%;
  height: 95% !important;
  transform: scaleZ(1.9) !important;
}

#customize-view #small-screen #logoplusbtn #itm-btn2 a#top-btn-smscreen {
  padding: 10px 4px;
  margin: 5px 0 0 0;
}

.graybtn {
  background-color: #adadad !important;
}

.disabled_finish {
  cursor: not-allowed;
  pointer-events: none;
  opacity: 0.8;
  background-color: #adadad !important;
}

.excellent_wrd {
  margin-right: 10px !important;
}
.space_a {
  margin-left: 5px !important;
}

.space_c {
  margin-right: 5px !important;
}

.newly-added-section {
  /* padding: 100px 0px 70px 0px; */
  background: #2a9a49;
}

.newly-added-section-header-content {
  padding: 6%;
}

.newly-added-inside-section-one {
  background: #f0f7ff !important;
  /* padding: 40px 160px 80px 160px; */
  /* display: flex; */
  /* justify-content: center; */

  padding-bottom: 80px;
}

.newly-added-inside-section-two {
  background: #eff7ff;
  max-width: 75%;
  margin-left: auto;
  margin-right: auto;
}

.newly-added-inside-section-three {
  background: #fff !important;
}

h2.newly-added-section-heading {
  font-size: 48px;
  line-height: 58px;
  /* color: rgb(57, 57, 57); */
  color: #fff;
  font-weight: bold;
  /* max-width: 800px; */
  margin: auto;
}

p.newly-added-section-subheading {
  font-size: 20px;
  font-weight: 400;
  line-height: 20px;
  color: #fff;

  /* color: #393939; */
}

h3.newly-added-section-subheading {
  font-size: 16px;
  font-weight: 600;
  /* line-height: 20px; */
  color: #000000;
  padding: 15px;

  /* color: #393939; */
}

.newly-added-inside-section-three-left {
  max-width: 100%;
}

.newly-added-inside-section-three-right {
  max-width: 100%;

  /* border-left: 2px solid #000; */
}

h3.newly-added-section-inside-subheading {
  font-size: 22px;
  font-weight: 600;
  /* line-height: 20px; */
  /* color: #fff; */
  /* padding: 15px; */
  padding-bottom: 10px;

  color: #393939;
}

p.newly-added-section-inside-content {
  font-size: 20px;
  /* font-weight: 600; */
  line-height: 16px;
  /* color: #fff; */
  /* padding: 15px; */

  color: #393939;
}

.dropdown {
  border: 0.5px solid red;
  border-radius: 10px;
}

.dropdown select {
  border: none;
}

.remove-drop-down-border {
  border: 0px;
}

.desableSubmitBtn {
  cursor: not-allowed;
}

/* Modern Hero Section Styles */
.hero-section {
  padding: 5rem 0 0;
  background: linear-gradient(to bottom, #fff, #f8faff);
  position: relative;
  overflow: hidden;
}

/* Content Styles */
.hero-content {
  position: relative;
  z-index: 2;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: #1a1a1a;
  font-style: italic;
  background: linear-gradient(45deg, #1a1a1a, #2a9a49);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subtitle {
  font-size: 1.5rem;
  line-height: 1.6;
  color: #666;
  margin-bottom: 2.5rem;
}

.hero-actions {
  margin-bottom: 3rem;
}

.hero-actions .btn {
  padding: 1rem 1.5rem;
  font-weight: 600;
  border-radius: 12px;
  transition: all 0.3s ease;
}

.hero-actions .btn-primary {
  background: #2a9a49;
  border: none;
  box-shadow: 0 4px 6px rgba(11, 114, 241, 0.1);
}

.hero-actions .btn-primary:hover {
  background: #094a28;
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(11, 114, 241, 0.15);
}

.hero-actions .btn-secondary {
  background: #fee91f;
  border: none;
  color: #1a1a1a;
  box-shadow: 0 4px 6px rgba(254, 233, 31, 0.1);
}

.hero-actions .btn-secondary:hover {
  background: #fde500;
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(254, 233, 31, 0.15);
}

/* Trust Indicators */
.hero-trust-indicators {
  margin-top: 3rem;
}

.credit-score-badge {
  margin-bottom: 2rem;
}

.credit-score-badge img {
  max-width: 200px;
  height: auto;
}

.trust-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}

.trust-logo {
  height: 40px;
  width: auto;
  opacity: 0.9;
  transition: opacity 0.3s ease;
}

.trust-logo:hover {
  opacity: 1;
}

/* Form Wrapper Styles */
.right-column {
  padding: 0px !important;
}

.hero-form-wrapper {
  border-radius: 20px;
  padding: 2.5rem 2.5rem 0;
  position: relative;
}

.loan-options {
  display: grid;
  gap: 1rem;
  margin-bottom: 2rem;
  padding: 15px !important;
}

.loan-option {
  width: 100%;
}

.option-card {
  display: block;
  padding: 1.25rem;
  border-radius: 12px;
  border: 2px solid #e6e6e6;
  background: #fff;
  cursor: pointer;
  transition: all 0.3s ease;
  margin: 0;
}

.option-card:hover {
  border-color: #2a9a49;
  background: #f8faff;
}

.loan-option.active .option-card {
  border-color: #2a9a49;
  background: #f0f7ff;
}

.option-content {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.option-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #1a1a1a;
}

.loan-option input[type="radio"] {
  position: absolute;
  opacity: 0;
}

.cta-wrapper {
  margin: 2rem 0;
}

.hero-image {
  margin-top: 3rem;
  text-align: center;
}

.hero-image img {
  width: 100%;
  min-height: 400px;
  height: auto;
  object-fit: cover;
  border-radius: 20px;
}

/* Responsive Adjustments */
@media (max-width: 991px) {
  .hero-section {
    padding: 3rem 0 0;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .hero-subtitle {
    font-size: 1.25rem;
  }

  .hero-form-wrapper {
    margin-top: 3rem;
    padding: 1.5rem 0 0;
  }
}

@media (max-width: 576px) {
  .hero-title {
    font-size: 2rem;
  }

  .hero-actions .btn {
    padding: 0.875rem 1.25rem;
    font-size: 0.95rem;
  }

  .loan-options {
    gap: 0.75rem;
  }

  .option-card {
    padding: 1rem;
  }

  .option-title {
    font-size: 1rem;
  }
}

/* Modern Features Section */
.features-section {
  padding: 4rem 0;
  background: linear-gradient(180deg, #f8faff 0%, #fff 100%);
  position: relative;
  overflow: hidden;
}

.features-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0.05) 25%,
    rgba(0, 0, 0, 0.05) 75%,
    rgba(0, 0, 0, 0) 100%
  );
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.feature-card {
  background: #fff;
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #2a9a49, #0f6135);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.06);
  border-color: rgba(11, 114, 241, 0.1);
}

.feature-card:hover::before {
  opacity: 1;
}

.feature-icon {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f8faff;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
  background: #f0f7ff;
  transform: scale(1.05);
}

.feature-img {
  width: 40px;
  height: 40px;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.feature-card:hover .feature-img {
  transform: scale(1.1);
}

.feature-content {
  margin-top: 1rem;
}

.feature-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: #1a1a1a;
  margin: 0;
  line-height: 1.4;
}

/* Responsive Adjustments */
@media (max-width: 991px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    padding: 0 1rem;
  }

  .feature-card {
    padding: 1.5rem;
  }

  .feature-icon {
    width: 70px;
    height: 70px;
  }

  .feature-img {
    width: 35px;
    height: 35px;
  }
}

@media (max-width: 576px) {
  .features-section {
    padding: 3rem 0;
  }

  .features-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .feature-card {
    padding: 1.25rem;
  }

  .feature-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 1rem;
  }

  .feature-img {
    width: 30px;
    height: 30px;
  }

  .feature-title {
    font-size: 1rem;
  }
}

/* Modern Cards Section */
.cards-section {
  padding: 5rem 0;
  background: linear-gradient(180deg, #fff 0%, #f8faff 100%);
  background-image: url("../images/cards-section-bg copy.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-blend-mode: multiply;
  position: relative;
}

.section-header {
  margin-bottom: 4rem;
}

.section-title {
  font-size: 3rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 1rem;
  background: linear-gradient(45deg, #1a1a1a, #2a9a49);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-subtitle {
  font-size: 1.5rem;
  color: #666;
  font-weight: 500;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-bottom: 4rem;
}

.card-link {
  text-decoration: none;
  color: inherit;
  display: block;
}

.loan-card {
  background: #fff;
  border-radius: 20px;
  padding: 2.5rem 2rem;
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
  position: relative;
  overflow: hidden;
}

.loan-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #2a9a49, #0f6135);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.loan-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.06);
  border-color: rgba(11, 114, 241, 0.1);
}

.loan-card:hover::before {
  opacity: 1;
}

.card-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f8faff;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.loan-card:hover .card-icon {
  background: #f0f7ff;
  transform: scale(1.05);
}

.card-icon img {
  width: 40px;
  height: 40px;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.loan-card:hover .card-icon img {
  transform: scale(1.1);
}

.card-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #1a1a1a;
  margin: 0;
  line-height: 1.4;
}

/* Customer Reviews Section */
.customer-reviews {
  margin-top: 4rem;
  padding: 2rem;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.review-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.review-text {
  font-size: 1.1rem;
  color: #666;
}

.review-rating {
  font-size: 1.2rem;
  color: #2a9a49;
  font-weight: 700;
}

.review-link {
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.review-link:hover {
  opacity: 0.9;
}

.review-image {
  height: 40px;
  width: auto;
  vertical-align: middle;
}

.offer-link {
  color: #1a1a1a;
  text-decoration: none;
  font-weight: 500;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  background: #f8faff;
  transition: all 0.3s ease;
}

.offer-link:hover {
  background: #f0f7ff;
  color: #2a9a49;
}

/* Responsive Adjustments */
@media (max-width: 1200px) {
  .cards-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}

@media (max-width: 768px) {
  .section-title {
    font-size: 2.5rem;
  }

  .section-subtitle {
    font-size: 1.25rem;
  }

  .cards-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }

  .customer-reviews {
    padding: 1.5rem;
  }

  .review-content {
    gap: 0.75rem;
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .section-title {
    font-size: 2rem;
  }

  .section-subtitle {
    font-size: 1.1rem;
  }

  .loan-card {
    padding: 2rem 1.5rem;
  }

  .card-icon {
    width: 60px;
    height: 60px;
  }

  .card-icon img {
    width: 30px;
    height: 30px;
  }

  .card-title {
    font-size: 1.1rem;
  }
}

/* Modern Process Section */
.process-section {
  padding: 6rem 0;
  background: linear-gradient(180deg, #fff 0%, #f8faff 100%);
  position: relative;
  overflow: hidden;
}

.process-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0.05) 25%,
    rgba(0, 0, 0, 0.05) 75%,
    rgba(0, 0, 0, 0) 100%
  );
}

.section-tag {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: #f0f7ff;
  color: #2a9a49;
  border-radius: 20px;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 2rem;
}

.process-subtitle {
  font-size: 2rem;
  color: #2a9a49;
  margin: 0;
  font-weight: 600;
}

.process-title {
  font-size: 3.25rem;
  color: #1a1a1a;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 2rem;
}

.process-steps {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.process-card {
  position: relative;
}

.process-card-inner {
  background: #fff;
  border-radius: 20px;
  padding: 2rem;
  display: flex;
  align-items: flex-start;
  gap: 2rem;
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
}

.process-card:hover .process-card-inner {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.06);
  border-color: rgba(11, 114, 241, 0.1);
}

.process-icon {
  position: relative;
  flex-shrink: 0;
}

.process-icon img {
  width: 60px;
  height: 60px;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.process-card:hover .process-icon img {
  transform: scale(1.1);
}

.step-number {
  position: absolute;
  top: -10px;
  right: -10px;
  width: 28px;
  height: 28px;
  background: #2a9a49;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  font-weight: 600;
  border: 2px solid #fff;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.process-card-content {
  flex-grow: 1;
}

.process-card-title {
  font-size: 1.5rem;
  color: #1a1a1a;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.process-card-text {
  font-size: 1.25rem;
  color: #666;
  line-height: 1.6;
  margin: 0;
}

/* Process Cards Connection Lines */
.process-card:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 2rem;
  width: 2px;
  height: 2rem;
  background: linear-gradient(180deg, #2a9a49 0%, rgba(11, 114, 241, 0.2) 100%);
}

/* Responsive Adjustments */
@media (max-width: 991px) {
  .process-section {
    padding: 4rem 0;
  }

  .process-title {
    font-size: 2rem;
    margin-bottom: 3rem;
  }

  .process-content {
    text-align: center;
    margin-bottom: 3rem;
  }

  .process-card-inner {
    padding: 1.5rem;
  }

  .process-icon img {
    width: 50px;
    height: 50px;
  }
}

@media (max-width: 576px) {
  .process-section {
    padding: 3rem 0;
  }

  .process-title {
    font-size: 1.75rem;
  }

  .process-subtitle {
    font-size: 1.1rem;
  }

  .process-card-inner {
    padding: 1.25rem;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1rem;
  }

  .process-icon {
    margin-bottom: 0.5rem;
  }

  .process-card-title {
    font-size: 1.1rem;
  }

  .process-card-text {
    font-size: 0.95rem;
  }

  .process-card:not(:last-child)::after {
    left: 50%;
    transform: translateX(-50%);
  }
}

/* Modern Savings Section */
.savings-section {
  padding: 6rem 0;
  background: linear-gradient(180deg, #fff 0%, #f8faff 100%);
  position: relative;
  overflow: hidden;
}

.savings-header {
  max-width: 800px;
  margin: 0 auto 4rem;
}

.savings-title {
  font-size: 3rem;
  font-weight: 700;
  color: #1a1a1a;
  line-height: 0.75;
  margin-bottom: 0.5rem;
}

.savings-subtitle {
  font-size: 1.5rem;
  color: #666;
  line-height: 1.6;
  margin-top: 2rem;
}

/* Desktop Table Styles */
.comparison-table-wrapper {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  padding: 2rem;
  margin-bottom: 3rem;
}

.comparison-table {
  overflow-x: auto;
}

.comparison-table table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
}

.comparison-table th {
  font-size: 1.1rem;
  color: #666;
  font-weight: 600;
  padding: 1.5rem 1rem;
  border-bottom: 2px solid #eee;
}

.comparison-table td {
  padding: 1.5rem 1rem;
  font-size: 1.1rem;
  color: #1a1a1a;
  font-weight: 500;
}

.provider-cell {
  min-width: 200px;
}

.provider-label {
  font-weight: 600;
  color: #1a1a1a;
}

.first-path-logo {
  height: 40px;
  width: auto;
}

.credit-card-row {
  background: #fff;
}

.first-path-row {
  background: #f0f7ff;
  position: relative;
}

.first-path-row::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, #2a9a49 0%, #0f6135 100%);
  border-radius: 2px;
}

.first-path-row .text-center {
  vertical-align: middle;
}

.savings-row {
  background: #fff;
  border-top: 2px solid #eee;
}

.savings-label {
  color: #2a9a49;
  font-weight: 600;
  text-align: right;
  padding-right: 2rem;
}

.savings-amount {
  font-size: 1.5rem;
  font-weight: 700;
  color: #2a9a49;
}

/* Mobile Card Styles */
.comparison-cards {
  padding: 0 1rem;
}

.comparison-card {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  margin-bottom: 1.5rem;
  overflow: hidden;
}

.comparison-card.credit-card {
  border: 1px solid rgba(0, 0, 0, 0.08);
}

.comparison-card.first-path {
  background: #f0f7ff;
  border: 1px solid rgba(11, 114, 241, 0.2);
}

.card-header {
  padding: 1.5rem;
  border-bottom: 1px solid #eee;
}

.card-header h3 {
  font-size: 1.2rem;
  font-weight: 600;
  color: #1a1a1a;
  margin: 0;
}

.card-header .first-path-logo {
  height: 35px;
}

.card-body {
  padding: 1.5rem;
}

.comparison-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.comparison-item:last-child {
  margin-bottom: 0;
}

.comparison-item .label {
  color: #666;
  font-size: 1rem;
}

.comparison-item .value {
  font-weight: 600;
  color: #1a1a1a;
  font-size: 1rem;
}

.savings-card {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  padding: 1.5rem;
  text-align: center;
  margin-bottom: 2rem;
}

.savings-card .savings-label {
  color: #2a9a49;
  font-weight: 600;
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  text-align: center;
}

.savings-card .savings-amount {
  font-size: 2rem;
  font-weight: 700;
  color: #2a9a49;
}

/* Footer Styles */
.savings-footer {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 1rem;
}

.cta-button {
  display: inline-block;
  background: #2a9a49;
  color: #fff;
  padding: 1rem 2rem;
  border-radius: 10px;
  font-weight: 600;
  font-size: 1.1rem;
  text-decoration: none;
  transition: all 0.3s ease;
  margin-bottom: 2rem;
}

.cta-button:hover {
  background: #094a28;
  transform: translateY(-2px);
  color: #fff;
}

.credit-score-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  color: #2a9a49;
  font-size: 1.5rem;
  font-weight: 500;
  margin-bottom: 2rem;
}

.check-icon {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.disclaimer {
  font-size: 1rem;
  color: #666;
  line-height: 1.6;
}

/* Responsive Adjustments */
@media (max-width: 991px) {
  .savings-title {
    font-size: 2.5rem;
  }

  .savings-subtitle {
    font-size: 1.1rem;
  }

  .comparison-table-wrapper {
    padding: 1.5rem;
  }
}

@media (max-width: 768px) {
  .savings-section {
    padding: 4rem 0;
  }

  .savings-title {
    font-size: 2rem;
  }

  .savings-subtitle {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .savings-section {
    padding: 3rem 0;
  }

  .savings-title {
    font-size: 1.75rem;
  }

  .comparison-card {
    margin-left: -1rem;
    margin-right: -1rem;
    border-radius: 0;
  }

  .savings-card {
    margin-left: -1rem;
    margin-right: -1rem;
    border-radius: 0;
  }

  .cta-button {
    width: 100%;
    text-align: center;
  }
}

/* Modern Quote Area Section */
.quote-area {
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
}

/* Features Column Styles */
.features-content {
  padding-right: 2rem;
}

.quote-subheading {
  font-size: 1.25rem;
  color: #2a9a49;
  margin-bottom: 1rem;
  font-weight: 600;
}

.quote-heading {
  font-size: 2.5rem;
  color: #1a1a1a;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 3rem;
}

.features-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1.25rem;
  background: #fff;
  border-radius: 12px;
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
}

.feature-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.06);
  border-color: rgba(11, 114, 241, 0.1);
}

.feature-icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f0f7ff;
  border-radius: 12px;
  transition: all 0.3s ease;
  margin-top: 1rem;
  margin-bottom: 1rem;
}

.feature-item:hover .feature-icon {
  background: #e1eeff;
  transform: scale(1.05);
}

.feature-text {
  font-size: 1.5rem;
  color: #1a1a1a;
  font-weight: 500;
  line-height: 1.4;
  margin: auto;
}

/* Form Column Styles */
.quote-form-wrapper {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.form-area {
  padding: 2.5rem;
}

.form-header {
  margin-bottom: 2.5rem;
}

.form-title {
  font-size: 2rem;
  color: #1a1a1a;
  font-weight: 700;
  margin-bottom: 1rem;
}

.form-subtitle {
  font-size: 1.25rem;
  color: #666;
  margin: 0;
}

.quote-form {
  max-width: 500px;
  margin: 0 auto;
}

.form-floating {
  position: relative;
}

.form-control {
  height: 60px;
  padding: 1rem 1rem 0.5rem;
  font-size: 1rem;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 12px;
  transition: all 0.3s ease;
  background: #f8faff;
}

.form-control:focus {
  border-color: #2a9a49;
  box-shadow: 0 0 0 4px rgba(11, 114, 241, 0.1);
  background: #fff;
}

.form-floating label {
  padding: 1rem;
  color: #666;
  transition: all 0.3s ease;
}

.form-floating > .form-control:focus ~ label,
.form-floating > .form-control:not(:placeholder-shown) ~ label {
  transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem);
  color: #2a9a49;
}

.error-message {
  font-size: 0.875rem;
  color: #dc3545;
  margin-top: 0.25rem;
}

.offer-code-note {
  background: #fff4e2;
  border-radius: 12px;
  padding: 1rem;
  margin: 1.5rem 0;
}

.offer-code-note p {
  color: #555;
  margin: 0;
  font-size: 1 5rem;
}

.form-agreement {
  margin: 2rem 0;
}

.agreement-text {
  font-size: 1.25rem;
  color: #666;
  line-height: 1.6;
}

.agreement-text a {
  color: #2a9a49;
  text-decoration: none;
  font-weight: 500;
}

.agreement-text a:hover {
  text-decoration: underline;
}

.submit-button {
  width: 100%;
  padding: 1rem;
  background: #fee91f;
  border: none;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 600;
  color: #1a1a1a;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px rgba(254, 233, 31, 0.2);
}

.submit-button:hover {
  background: #fde500;
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(254, 233, 31, 0.3);
}

.form-trust-indicators {
  margin-top: 2rem;
  text-align: center;
}

.credit-score-badge {
  margin-bottom: 1.5rem;
}

.credit-score-badge img {
  max-width: 200px;
  height: auto;
}

.trust-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
}

.trust-logos img {
  height: 40px;
  width: auto;
  opacity: 0.9;
  transition: opacity 0.3s ease;
}

.trust-logos img:hover {
  opacity: 1;
}

/* Success Message Styles */
.success-message {
  display: none;
  align-items: center;
  justify-content: center;
  padding: 4rem 2rem;
  height: 803px;
  text-align: center;
}

.success-title {
  color: #1a1a1a;
  font-weight: 700;
  margin-bottom: 1rem;
}

.success-text {
  font-size: 1.5rem;
  color: #666;
  margin: 0;
}

/* Responsive Adjustments */
@media (max-width: 991px) {
  .quote-area {
    padding: 4rem 0;
  }

  .features-content {
    padding-right: 0;
    margin-bottom: 3rem;
  }

  .quote-heading {
    font-size: 2rem;
  }

  .form-area {
    padding: 2rem;
  }
}

@media (max-width: 576px) {
  .quote-area {
    padding: 3rem 0;
  }

  .quote-heading {
    font-size: 1.75rem;
  }

  .feature-item {
    padding: 1rem;
  }

  .feature-icon {
    width: 40px;
    height: 40px;
  }

  .feature-text {
    font-size: 1.25rem;
  }

  .form-area {
    padding: 1.5rem;
  }

  .form-title {
    font-size: 1.75rem;
  }

  .submit-button {
    padding: 0.875rem;
  }
}

/* Modern Testimonials Section */
.testimonial-area {
  padding: 6rem 0;
  background: linear-gradient(180deg, #fff 0%, #f8faff 100%);
  position: relative;
  overflow: hidden;
}

.testimonial-heading {
  font-size: 3rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 1rem;
  background: linear-gradient(45deg, #1a1a1a, #2a9a49);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.testimonial-subheading {
  font-size: 1.25rem;
  color: #666;
  margin-bottom: 3rem;
}

.trustpilot-review {
  background: #fff;
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
  margin-bottom: 4rem;
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  flex-direction: column;
}

.trustpilot-review .review-text {
  font-size: 1.1rem;
  color: #666;
}

.trustpilot-review .excellent-text {
  color: #00b67a;
  font-weight: 700;
  margin: 0 0.5rem;
}

.trustpilot-review img {
  height: 40px;
  width: auto;
  transition: opacity 0.3s ease;
}

.trustpilot-review a:hover img {
  opacity: 0.9;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin: 0 auto;
  max-width: 1200px;
  padding: 0 1rem;
}

.testimonial-card {
  background: #fff;
  border-radius: 20px;
  padding: 2.5rem;
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
  position: relative;
  overflow: hidden;
}

.testimonial-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #2a9a49, #0f6135);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.06);
  border-color: rgba(11, 114, 241, 0.1);
}

.testimonial-card:hover::before {
  opacity: 1;
}

.testimonial-content {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #1a1a1a;
  margin-bottom: 2rem;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.author-info {
  font-size: 1rem;
  font-weight: 600;
  color: #2a9a49;
}

.rating-stars {
  height: 20px;
  width: auto;
}

/* Modern FAQ Section */
.faq-area {
  background: #fff;
  border-radius: 24px;
  padding: 2rem;
  max-width: 900px;
  margin: 4rem auto;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.faq-heading {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 3rem;
  text-align: center;
}

.accordion-item {
  border: none;
  background: transparent;
  margin-bottom: 1rem;
}

.accordion-button {
  padding: 1.5rem;
  background: #f8faff;
  border-radius: 12px !important;
  font-size: 1.1rem;
  font-weight: 600;
  color: #1a1a1a;
  transition: all 0.3s ease;
}

.accordion-button:not(.collapsed) {
  background: #f0f7ff;
  color: #2a9a49;
  box-shadow: none;
}

.accordion-button:focus {
  box-shadow: none;
  border-color: transparent;
}

.accordion-button::after {
  background-size: 1.25rem;
  transition: all 0.3s ease;
}

.accordion-body {
  padding: 1.5rem;
  font-size: 1.25rem;
  line-height: 1.6;
  color: #666;
}

.see-more-btn {
  display: inline-block;
  background: #fee91f;
  color: #1a1a1a;
  padding: 1rem 2rem;
  border-radius: 12px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.3s ease;
  margin-top: 2rem;
}

.see-more-btn:hover {
  background: #fde500;
  transform: translateY(-2px);
  color: #1a1a1a;
  box-shadow: 0 4px 12px rgba(254, 233, 31, 0.2);
}

/* Responsive Adjustments */
@media (max-width: 991px) {
  .testimonial-area {
    padding: 4rem 0;
  }

  .testimonial-heading {
    font-size: 2.5rem;
  }

  .testimonial-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .faq-area {
    padding: 3rem 2rem;
    margin: 3rem 1rem;
  }
}

@media (max-width: 768px) {
  .testimonial-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
  }

  .testimonial-heading {
    font-size: 2rem;
  }

  .faq-heading {
    font-size: 2rem;
  }

  .accordion-button {
    padding: 1.25rem;
    font-size: 1rem;
  }
}

/* Modern Footer Styles */
.modern-footer {
  background: linear-gradient(to bottom, #f8faff, #fff);
  padding-top: 4rem;
  font-family: "Montserrat", sans-serif;
}

/* Trust Badges Section */
.footer-trust-badges {
  padding: 2rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.trust-badges-grid {
  display: flex;
  gap: 8rem;
  align-items: center;
  justify-content: center;
}

.trust-badge-item {
  text-align: center;
}

.trust-badge-item img {
  max-width: 180px;
  height: auto;
  transition: opacity 0.3s ease;
}

.trust-badge-link:hover img {
  opacity: 0.8;
}

.social-links {
  display: flex;
  gap: 1.5rem;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #f0f7ff;
  transition: all 0.3s ease;
}

.social-link:hover {
  transform: translateY(-2px);
  background: #e1eeff;
}

.social-link img {
  width: 20px;
  height: 20px;
  opacity: 0.7;
}

/* Footer Links */
.footer-links {
  padding: 2rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.footer-nav {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.footer-link {
  color: #666;
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.3s ease;
}

.footer-link:hover {
  color: #2a9a49;
}

/* Disclaimer Section */
.footer-disclaimer {
  padding: 3rem 0;
  background: #f8faff;
}

.disclaimer-title {
  font-size: 1.25rem;
  color: #1a1a1a;
  font-weight: 600;
  margin-bottom: 1.5rem;
  text-align: center;
}

.disclaimer-content {
  max-width: 1000px;
  margin: 0 auto;
  font-size: 0.9rem;
  line-height: 1.6;
  color: #666;
  text-align: justify;
}

/* Copyright */
.footer-copyright {
  padding: 1.5rem 0;
  background: #fff;
  text-align: center;
}

.footer-copyright p {
  font-size: 0.9rem;
  color: #999;
  margin: 0;
}

/* Responsive Adjustments */
@media (max-width: 991px) {
  .trust-badges-grid {
    flex-direction: column;
    gap: 4rem;
  }

  .social-links {
    justify-content: center;
    grid-column: span 2;
  }
}

@media (max-width: 576px) {
  .modern-footer {
    padding-top: 2rem;
  }

  .trust-badges-grid {
    gap: 2rem;
  }

  .social-links {
    grid-column: auto;
  }

  .footer-nav {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }

  .disclaimer-content {
    font-size: 0.85rem;
  }
}

/* Modern Loan Section */
.modern-loan-section {
  background: linear-gradient(135deg, #2a9a49 0%, #1a7535 100%);
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
}

.modern-loan-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("../images/pattern.svg") repeat;
  opacity: 0.05;
  pointer-events: none;
}

.loan-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

.loan-content-wrapper {
  padding: 2rem;
}

.loan-title {
  font-size: 3.5rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 2.5rem;
  line-height: 1.2;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.loan-cta {
  margin-top: 2rem;
}

.loan-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 1.25rem 2.5rem;
  background: #fee91f;
  color: #1a1a1a;
  font-size: 1.25rem;
  font-weight: 600;
  border-radius: 16px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.loan-button:hover {
  transform: translateY(-2px);
  background: #fde500;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.button-text {
  position: relative;
}

.button-arrow {
  transition: transform 0.3s ease;
}

.loan-button:hover .button-arrow {
  transform: translateX(4px);
}

/* Responsive Adjustments */
@media (max-width: 991px) {
  .modern-loan-section {
    padding: 4rem 0;
  }

  .loan-title {
    font-size: 2.5rem;
  }

  .loan-content-wrapper {
    padding: 1.5rem;
  }
}

@media (max-width: 576px) {
  .modern-loan-section {
    padding: 3rem 0;
  }

  .loan-title {
    font-size: 32px !important;
    line-height: normal !important;
  }

  .loan-button {
    width: 100%;
    padding: 1rem 2rem;
    font-size: 1.1rem;
  }
}
