body {
  font-family: "Montserrat", sans-serif;
  background-color: #fff;
  color: #000;
}
.page-footer {
  background: #000;
  color: #fff;
  height: 98px;
  text-align: center;
  padding: 16px 0;
}
main {
  font-family: Montserrat;
}

.footer-brand {
  font-size: 27px;
  font-weight: 400;
  display: flex;
  margin-top: 20px;
  justify-content: center;
  align-items: center;
}
.uso-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 90px;
}

.uso-text {
  flex: 1 1 50%;
  margin-left: 40px;
  font-family: Montserrat;
  margin-top: 80px;
}

.uso-heading {
  position: relative;
  font-size: 58px;
  font-weight: 300;
  margin-bottom: 20px;
  line-height: 1.2;
}
.uso-heading::before {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background: #e3c572;
  margin-bottom: 12px;
}

.uso-subtitle {
  font-size: 25px;
  font-weight: 500;
  margin-bottom: 12px;
}

.uso-description {
  font-size: 18px;
  line-height: 1.5;
  margin-bottom: 20px;
  font-weight: 300;
  color: rgb(100, 99, 99);
}

.uso-button {
  background: transparent;
  color: #e3c572;
  font-size: 14px;
  font-weight: 500;
  padding: 10px 20px;
  border: 2px solid #e3c572;
  cursor: pointer;
  text-transform: none;
  border-radius: 4px;
}
.uso-button:hover {
  background-color: #e3c572;
  color: #fff;
}

.uso-image {
  flex: 1 1 50%;
  display: flex;
  justify-content: center;
  margin-top: 80px;
}

.uso-image img {
  height: auto;
  margin-top: 20px;
}

@media (max-width: 768px) {
  .uso-section {
    flex-direction: column;
    text-align: left;
  }
  .uso-heading::before {
    margin-top: 40px;
  }
  .uso-text {
    flex: 1 1 100%;
    margin-left: 17px;
    margin-bottom: 20px;
  }
  .uso-image img {
    width: 320px;
  }
  .uso-heading {
    margin-bottom: 16px;
  }
  .uso-button {
    margin: 0 auto;
  }
}
.steps-section {
  background-color: #f9f9f9;
  margin: 0 auto;
  padding: 40px 30px;
}

.steps-grid-one {
  background-color: #f9f9f9;
  display: grid;
  grid-template-columns: 1fr 0.8fr 1.2fr; /* Default layout */
  gap: 20px;
  align-items: stretch;
}
.steps-grid-two {
  background-color: #f9f9f9;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1fr; /* Default layout */
  gap: 20px;
  align-items: stretch;
}
.steps-grid-three {
  background-color: #f9f9f9;
  display: grid;
  grid-template-columns: 1fr 0.8fr 1.2fr; /* Default layout */
  gap: 20px;
  align-items: stretch;
}
.step-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.step-text {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 20px;
  background-color: #f9f9f9;
  border: 1px solid #000000;
}

.step-number {
  font-size: 55px;
  font-weight: 300;
  margin-bottom: 8px;
}

.step-description {
  font-size: 23px;
  line-height: 1.5;
  font-weight: 500;
  color: rgb(109, 109, 109);
  position: relative;
  top: 190px;
}

@media (max-width: 768px) {
  .steps-grid-one {
    grid-template-columns: 1fr;
  }
  .steps-grid-two {
    grid-template-columns: 1fr;
  }
  .steps-grid-three {
    grid-template-columns: 1fr;
  }
}
.makeitbold {
  font-weight: bold;
  color: #000;
}
.faq-wrapper {
  max-width: 1600px;
  margin: 0 auto;
  padding: 40px 30px;
}

.faq-title {
  font-size: 45px;
  font-weight: 300;
  margin-bottom: 30px;
  color: #252525;
  margin-top: 80px;
  position: relative;
  text-align: center;
}
.faq-title::after {
  content: "";
  display: block;
  width: 94px;
  height: 3px;
  background: #e3c572;
  margin: 0 auto 90px;
  margin-top: 25px;
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.faq-item {
  border: 1px solid #000000;
  padding: 16px;
  position: relative;
}

.faq-question {
  background: transparent;
  border: none;
  width: 100%;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-size: 18px;
  font-weight: 500;
  color: #000;
}

.faq-arrow {
  font-size: 18px;
  color: #999;
  transition: transform 0.3s;
}

.faq-answer {
  display: none;
  margin-top: 10px;
  font-size: 14px;
  line-height: 1.4;
  color: #666;
}

.faq-item.open .faq-answer {
  display: block;
}
.faq-item.open .faq-arrow {
  transform: rotate(-90deg);
  color: #e3c572;
}

@media (max-width: 768px) {
  .faq-grid {
    grid-template-columns: 1fr;
  }
}
.banner-section {
  position: relative;
  width: 100%;
  overflow: hidden;

  .banner-text {
    z-index: 10;
    position: absolute;
    left: 3%;
  }

  .banner-picture {
    width: 100%;
    height: 100%;
    padding: 0;
  }

  .banner-picture img {
    object-fit: cover;
    width: 100%;
    height: 100%;
    display: block;
  }
}
@media (width < 768px) {
  .banner-section .banner-text {
    left: 2%;
    bottom: 0;
  }
  .faq-title {
    text-align: start;
  }
  .faq-title::after {
    margin: 15px 0px;
  }
}

@media (max-width: 768px) {
  .steps-grid-one {
    gap: 20px;
  }
  .steps-grid-two {
    gap: 20px;
  }
  .steps-grid-three {
    gap: 20px;
  }
  .step-description {
    top: 0;
  }

  .steps-grid-one > :nth-child(1),
  .steps-grid-two > :nth-child(3),
  .steps-grid-three > :nth-child(2) {
    display: none;
  }

  .steps-grid-one > :nth-child(2) {
    order: 2;
  }
  .steps-grid-one > :nth-child(3) {
    order: 1;
  }

  .steps-grid-two > :nth-child(1) {
    order: 1;
  }
  .steps-grid-two > :nth-child(2) {
    order: 2;
  }

  .steps-grid-three > :nth-child(3) {
    order: 1;
  }
  .steps-grid-three > :nth-child(1) {
    order: 2;
  }
}
