.faq-section {
  width: 100%;
  margin-top: 50px;
  user-select: none;
}

.faq-section .content {
  max-width: 1280px;
  margin: 0 auto;
}

.faq-section .content .faq-list  {
  -webkit-tap-highlight-color: transparent;
}

.faq-section .content .faq-list .faq-item {
  cursor: pointer;
  margin-bottom: 50px;
  transition: background-color 0.3s;
}

.faq-section .content .faq-list .faq-item hr {
  margin: 0;
  padding: 0;
  border: none;
  height: 0.5px;
  background-color: #595959;
  opacity: 0.5;
  margin-right: -20px;
}

.faq-section .content .faq-list .faq-item .faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  margin-bottom: 9.5px;
}

.faq-section .content .faq-list .faq-item .faq-question .header2 {
  color: #333;
  font-weight: 500;
  font-size: 26px;
  margin-bottom: 0;
  padding-right: 10px;
  margin-top: 0rem;
  line-height: 1.33;
  text-rendering: optimizeLegibility;
  font-stretch: normal;
  font-style: normal;
  letter-spacing: normal;
}


.faq-section .content .faq-list .faq-item .faq-question .faq-icon {
  transition: transform 0.3s ease;
  width: 20px;
  height: 20px;
  transform: rotate(90deg);
}

.faq-section .content .faq-list .faq-item.active .faq-question .faq-icon {
  transform: rotate(-90deg);
}

.faq-section .content .faq-list .faq-item .faq-answer {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.3s ease-in-out, opacity 0.3s ease-in-out;
  margin-top: 10px;
  font-size: 21px;
  line-height: 1.5em;
}

.faq-section .content .faq-list .faq-item.active .faq-answer {
  display: block;
  max-height: 1000px;
  opacity: 1;
}

.faq-section .content .contact-section {
  margin-top: 0px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #fff;
  text-align: left;
  border-radius: 20px;
}

.faq-section .content .contact-section .contact-image,
.faq-section .content .contact-section .contact-info {
  width: 50%;
}

.faq-section .content .contact-section .contact-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.faq-section .content .contact-section .contact-info {
  flex: 1;
  padding-left: 14px;
}

.faq-section .content .contact-section .contact-info .header2 {
  font-size: 48px;
  font-weight: bold;
  margin-bottom: 22px;
  color: #1e1e1e;
  margin-top: 0rem;
  line-height: 1.33;
  text-rendering: optimizeLegibility;
  font-stretch: normal;
  font-style: normal;
  letter-spacing: normal;
}

.faq-section .content .contact-section .contact-info p {
  font-size: 24px;
  color: #1e1e1e;
  margin-bottom: 27px;
}

.faq-section .content .contact-section .button-primary {
  min-width: 54%;
}

@media (max-width: 768px) {
  .faq-section {
    padding: 20px 15px;
    margin-top: 65px;
  }

  .faq-section .content .faq-list .faq-item {
    margin-bottom: 30px;
    outline: none;
  }

  .faq-section .content .faq-list .faq-item hr {
    margin-right: 0;
  }

  .faq-section .content .faq-list .faq-item .faq-question .header2 {
    font-size: 21px;
    padding-right: 10px;
  }

  .faq-section .content .faq-list .faq-item .faq-question .faq-icon {
    width: 15px;
    height: 8px;
  }

  .faq-section .content .faq-list .faq-item .faq-answer {
    font-size: 17px;
    line-height: 1.5;
    margin-top: 5px;
  }

  .faq-section .content .contact-section {
    margin-top: 40px;
    flex-direction: column;
    text-align: center;
    border-radius: 12px;
    padding-bottom: 15px;
  }

  .faq-section .content .contact-section .contact-image,
  .faq-section .content .contact-section .contact-info {
    width: 100%;
  }

  .faq-section .content .contact-section .contact-image img {
    height: auto;
  }

  .faq-section .content .contact-section .contact-info {
    padding: 5px;
  }

  .faq-section .content .contact-section .contact-info .header2 {
    font-size: 28px;
    margin-bottom: 15px;
  }

  .faq-section .content .contact-section .contact-info p {
    font-size: 20px;
    margin-bottom: 15px;
  }
}

@media (min-width: 768px) and (max-width: 1280px) {
  .faq-section {
    padding: 40px 60px;
  }

  .faq-section .content .contact-section .contact-info {
    padding: 20px 30px;
  }
}

.faq-section-wrapper {
  background-color: #f6f6f6;
  padding: 50px 0px;
}
