.questions-section {
  width: 100%;
}

.questions-section > .container {
  position: relative;
  margin: 0 auto;
  max-width: min(1200px, 100%);
  padding-inline: clamp(16px, 4vw, 40px);
  z-index: 2;
  text-align: center;
}

.questions-section > .container hr {
  border: none;
  height: 2px;
  margin: clamp(30px, 6vw, 80px) auto;
  width: 100%;
  background: #fff;
}

h2.questions-title {
  color: #fff;
  font-size: clamp(22px, 5vw, 60px);
  font-weight: 800;
  line-height: 1.3;
  margin-bottom: clamp(30px, 5vw, 60px);
}

.questions-wapper {
  max-width: 1200px;
  margin: 0 auto;
}

.question-item {
  margin-bottom: 16px;
}

.question-header {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 20px;
  background-color: transparent;
  border: 2px solid #fff;
  border-radius: 16px;
  color: #fff;
  font-size: clamp(12px, 2.2vw, 18px);
  font-weight: 700;
  text-align: left;
  cursor: pointer;
}

.question-text {
  line-height: 1.6;
}

.question-icon {
  width: 0;
  height: 0;
  flex-shrink: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-top: 10px solid #fff;
  transition: transform 0.3s ease;
}
.question-answer {
  text-align: left;
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transform: translateY(-8px) scale(0.98);
  padding: 5px;
  background-color: #fff;
  border-radius: 12px;
  margin-top: 10px;
  font-size: clamp(12px, 2.5vw, 16px);
  color: #333;
  transition: max-height 0.6s cubic-bezier(0.25, 1.4, 0.5, 1), opacity 0.4s ease,
    transform 0.45s cubic-bezier(0.25, 1.4, 0.5, 1);
}
.question-item.is-open .question-answer {
  max-height: 500px;
  opacity: 1;
  transform: translateY(0) scale(1);
  padding: 16px 20px;
}
.question-item.is-open .question-icon {
  transform: rotate(180deg) scale(1.15);
}
