@charset "utf-8";
/* CSS Document */
.izimat-faq {
  max-width: 1100px;
  margin: 40px auto;
}

.izimat-faq__heading {
  margin-bottom: 28px;
  font-size: 42px;
  line-height: 1.15;
  font-weight: 800;
  text-align: center;
  color: #4f5360;
}

.izimat-faq__list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.izimat-faq__item {
  border: 1px solid #e5e0d8;
  border-radius: 14px;
  background: #fff;
  overflow: hidden;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.04);
}

.izimat-faq__question {
  width: 100%;
  padding: 12px 20px;
  border: 0;
  background: #fff;
  color: #3f4350;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.35;
  text-align: left;
  cursor: pointer;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.izimat-faq__question:hover,
.izimat-faq__question:focus {
  background: #f4f2f2;
  outline: none;
}

.izimat-faq__question-text {
  display: block;
}

.izimat-faq__icon {
  position: relative;
  flex: 0 0 18px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #F29100 ;
}

.izimat-faq__icon::before,
.izimat-faq__icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12px;
  height: 2px;
  background: #fff;
  transform: translate(-50%, -50%);
}

.izimat-faq__icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
  transition: transform 0.2s ease;
}

.izimat-faq__question[aria-expanded="true"] .izimat-faq__icon::after {
  transform: translate(-50%, -50%) rotate(0deg);
}

.izimat-faq__answer {
  border-top: 1px solid #eee7de;
  background: #fbfaf8;
}

.izimat-faq__answer-inner {
  padding: 0 24px 22px;
  color: #4f5360;
  font-size: 16px;
  line-height: 1.7;
}

.izimat-faq__answer-inner p {
  margin: 18px 0 0;
}

@media (max-width: 767px) {
  .izimat-faq {
    margin: 28px auto;
  }

  .izimat-faq__heading {
    font-size: 30px;
    text-align: left;
  }

  .izimat-faq__question {
    padding: 16px 18px;
    font-size: 16px;
  }

  .izimat-faq__answer-inner {
    padding: 0 18px 18px;
    font-size: 15px;
  }
}