.question-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}

.question-nav__item {
  padding: 6px 18px;
  border-radius: 20px;
  border: 0.5px solid #6274904D;
  background: #6274904D;
  font-size: 13px;
  color: #627490;
  cursor: pointer;
  transition: background 0.15s, color 0.15s, border-color 0.15s;
  user-select: none;
}

.question-nav__item:hover {
  background: #f5f5f3;
}

.question-nav__item.active {
  background: #080F19;
  color: #fff;
  border-color: #080F19;
}

.container-question {
  display: none;
}

.container-question.active {
  display: block;
}

.container-question__name {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-size: 24px;
  color: #22252A;
  cursor: pointer;
  user-select: none;
}
.container-question__info{
    padding: 32px;
    margin-bottom: 24px;
    border-radius: 16px;
    background: #EFF4FA;
}
.container-question__name::after {
  content: '';
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  background-image: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolyline points='4,6 8,10 12,6' stroke='%23888' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  transition: transform 0.2s ease;
}

.container-question__name.open::after {
  transform: rotate(180deg);
}

.container-question__text {
  max-height: 0;
  overflow: hidden;
  font-size: 18px;
  color: #627490;
  line-height: 100%;
  transition: max-height 0.3s ease, padding 0.3s ease, margin-top 0.3s ease;
}
.container-question__text.open {
    margin-top: 16px;
  max-height: 600px;
  padding-bottom: 18px;
}