/* Dodaj do CSS */
.questionnaire{
  width: 100%;
  margin: 80px 0 120px 0;
}

.questionnaire__container{
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.questionnaire__header{
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.questionnaire__header .head{
  text-align: center;
  font-size: 32px;
  font-style: normal;
  font-weight: 800;
  line-height: 48px;
  color: #262424;
  margin: 0;
}

.questionnaire__header .head::before,
.questionnaire__header .head::after{
  content: "";
  display: none;
}

.questionnaire__content{
  width: 100%;
  display: flex;
  flex-direction: column;
  border-radius: 16px;
  box-shadow: 0 0 40px 0 rgba(0, 0, 0, 0.10);
  overflow: hidden;
}

.questionnaire__question{
  width: 100%;
  padding: 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  background: #fff;
}

.questionnaire__question .question{
  text-align: center;
  font-size: 20px;
  font-style: normal;
  font-weight: 800;
  line-height: 150%; /* 30px */
  color: #262424;
  margin: 0;
}

.questionnaire__buttons{
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
}

.questionnaire__question .answer-button{
  padding: 12px 24px;
  background: #2CB99C;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 24px; /* 150% */
  color: #FFFFFF;
  cursor: pointer;
  user-select: none;
  transition: background-color 0.3s, color 0.3s;
  border-radius: 120px;
}

.questionnaire__answers{
  width: 100%;
  background: #2CB99C;
  padding: 32px;
  display: none;
  align-items: center;
  justify-content: center;
  gap: 32px;
}

.questionnaire__answer{
  width: 100%;
  max-width: 920px;
  flex-direction: column;
  gap: 32px;
  align-items: center;
  justify-content: center;
}

.questionnaire__answers .title{
  color: #fff;
  text-align: center;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 120%; /* 24px */
  margin: 0;
}

.questionnaire__answers .desc p{ 
  color: #fff;
  text-align: center;
  font-size: 16px;
  font-weight: 300;
  line-height: 24px;
}

.questionnaire__answers .desc p:last-child{
  margin-bottom: 0;
}

.questionnaire__button-answer a{
  width: fit-content;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 24px; /* 150% */
  border-radius: 120px;
  background: #FFF;
  display: flex;
  padding: 12px 24px;
  color: #2CB99C;
  text-decoration: none;
}

.questionnaire__answer-yes,
.questionnaire__answer-no {
  display: none;
  opacity: 0;
  transition: opacity 0.4s;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
}