.faq {
    padding: 64px 0;
  }

  
@media (max-width: 900px) {
  .faq {
    padding: 48px 0;
  }
}
  
.hos-faq--simple .faq__header {
  margin-bottom: 24px;
}

.hos-faq--simple .faq__items {
  display: flex;
  flex-direction: column;
  margin: 0;
  gap: 16px;
}

.hos-faq--simple .faq__item {
  border: 1px solid #E2E7EE;
  padding: 32px;
  border-radius: 32px;
  background-color: #ffffff;
}

.hos-faq--simple .faq__item-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  position: relative;
}

.hos-faq--simple .faq__item-title::after {
  content: "";
  width: 24px;
  height: 2px;
  background-color: #111111;
  display: block;
}

.hos-faq--simple .hos-faq__lead {
 font-size: 14px;
}

.hos-faq__grid.hos-faq__grid--simple {
  grid-template-columns: 0.6fr 1.2fr;
}
@media (max-width: 992px) {
  .hos-faq__grid.hos-faq__grid--simple {
      grid-template-columns: 1fr;
      gap: 0;
  }
}

.hos-faq--simple .faq__item-title::before {
  content: "";
  width: 24px;
  height: 2px;
  background-color: #6a684d;
  border-radius: 360px;
  display: block;
  position: absolute;
  transform: rotate(90deg);
  right: 0;
  transition: 0.3s;
}

.hos-faq--simple .faq__item-title p.title {
  font-size: 19px;
  margin-bottom: 0;
  font-weight: 700;
  line-height: 1.4;
  color: #000000;
  text-align: left;
}

@media (max-width: 768px) {
  .hos-faq--simple .faq__item-title p.title {
    font-size: 15px;
  }
}

.hos-faq--simple .faq__item .text {
  transition: 0.3s;
  opacity: 0;
  height: 0;
  visibility: hidden;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.01em;
  text-align: left;
  color: #697289;
  font-size: 14px;
}
.hos-faq--simple .faq__item .text ul{
display: flex;
flex-direction: column;
gap:12px;
}
.hos-faq--simple .faq__item .text p {
  margin-bottom: 0;
  color: #697289;
  font-size: 14px;
}

.hos-faq--simple .faq__item.active .text {
  opacity: 1;
  height: auto;
  visibility: visible;
  padding-bottom: 0;
  margin-top: 24px;
}

.hos-faq--simple .faq__item.active .faq__item-title::before {
  transform: rotate(180deg);
}
