.faq-section {
  background: linear-gradient(rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0.72)),
    url("../../assets/im.png"),
    var(--bg);
  background-repeat: no-repeat, repeat, no-repeat;
  background-size: auto, auto, auto;
  padding: 62px 0 70px;
}

.faq-wrap {
  width: min(1220px, calc(100% - (var(--page-pad) * 2)));
  margin-inline: auto;
}

.faq-title {
  margin: 0 0 26px;
  font-size: 44px;
  line-height: 1.08;
  color: #1b2234;
  letter-spacing: -0.6px;
}

.faq-title span {
  color: #2f419d;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.faq-item {
  background: #f6f7f9;
  border: 1px solid #d4d9e2;
  border-radius: 10px;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  border: 0;
  background: transparent;
  text-align: left;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 15px 16px;
  font-size: 16px;
  font-weight: 600;
  color: #1f2536;
}

.faq-icon {
  width: 20px;
  height: 20px;
  border-radius: 999px;
  color: #9098a9;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 200ms ease, color 200ms ease;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 220ms ease;
}

.faq-answer p {
  margin: 0;
  padding: 0 16px 14px;
  color: #707786;
  font-size: 14px;
  line-height: 1.45;
}

.faq-item.is-open .faq-answer {
  max-height: 180px;
}

.faq-item.is-open .faq-icon {
  transform: rotate(180deg);
  color: #2f419d;
}

.catalogue-box {
  margin-top: 28px;
  background: #f6f7f9;
  border: 1px solid #d4d9e2;
  border-radius: 10px;
  padding: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.catalogue-copy h3 {
  margin: 0 0 6px;
  color: #242a3a;
  font-size: 18px;
}

.catalogue-copy p {
  margin: 0;
  color: #6e7583;
  font-size: 14px;
}

.catalogue-form {
  min-width: 340px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
}

.catalogue-form input {
  width: 100%;
  min-height: 38px;
  border-radius: 7px;
  border: 1px solid #d5dae3;
  background: #eef1f6;
  padding: 0 12px;
  font-size: 12px;
}

.catalogue-form button {
  width: 100%;
  min-height: 34px;
  border: 0;
  border-radius: 7px;
  background: #2f419d;
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
}

@media (max-width: 900px) {
  .faq-section {
    padding: 48px 0 54px;
  }

  .faq-question {
    font-size: 14px;
  }

  .catalogue-box {
    flex-direction: column;
    align-items: stretch;
  }

  .catalogue-form {
    min-width: 0;
  }
}

@media (max-width: 680px) {
  .faq-section {
    padding: 36px 0 42px;
  }

  .faq-title {
    margin-bottom: 18px;
    font-size: clamp(26px, 7vw, 34px);
  }

  .faq-question {
    padding: 13px 12px;
    font-size: 13px;
  }

  .faq-answer p {
    padding: 0 12px 12px;
    font-size: 12px;
  }

  .catalogue-box {
    margin-top: 20px;
    padding: 12px;
    gap: 12px;
  }

  .catalogue-copy h3 {
    font-size: 16px;
  }

  .catalogue-copy p {
    font-size: 12px;
  }
}
