.meliteh-faq {
  padding: clamp(24px, 3.5vw, 44px) 0;
}

.meliteh-faq__inner {
  width: min(980px, calc(100% - 32px));
  margin: 0 auto;
}

.meliteh-faq__header {
  max-width: 760px;
  margin: 0 auto 34px;
  text-align: center;
}

.meliteh-faq__title {
  margin: 0;
  color: #141414;
}

.meliteh-faq__intro {
  margin: 16px auto 0;
  color: #585858;
  font-size: 16px;
  line-height: 1.7;
}

.meliteh-faq__intro p,
.meliteh-faq__answer p {
  margin: 0;
}

.meliteh-faq__list {
  display: grid;
  gap: 12px;
}

.meliteh-faq__item {
  background: #ffffff;
  border: 1px solid rgba(20, 20, 20, 0.1);
  border-radius: 8px;
  box-shadow: 0 10px 28px rgba(8, 15, 52, 0.06);
  overflow: hidden;
}

.meliteh-faq__question {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 70px;
  padding: 20px 22px;
  color: #141414;
  cursor: pointer;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.35;
  list-style: none;
}

.meliteh-faq__question::-webkit-details-marker {
  display: none;
}

.meliteh-faq__icon {
  position: relative;
  flex: 0 0 auto;
  width: 24px;
  height: 24px;
  border: 1px solid rgba(210, 0, 39, 0.28);
  border-radius: 50%;
}

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

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

.meliteh-faq__item[open] .meliteh-faq__icon::after {
  opacity: 0;
  transform: translate(-50%, -50%) rotate(0deg);
}

.meliteh-faq__answer {
  padding: 0 22px 22px;
  color: #585858;
  font-size: 15px;
  line-height: 1.75;
}

@media (max-width: 700px) {
  .meliteh-faq {
    padding: 21px 0;
  }

  .meliteh-faq__header {
    margin-bottom: 26px;
    text-align: left;
  }

  .meliteh-faq__question {
    min-height: 62px;
    padding: 18px;
    font-size: 16px;
  }

  .meliteh-faq__answer {
    padding: 0 18px 18px;
  }
}
