#faq {
  display: flex;
  flex-direction: column;
  row-gap: 32px;
  padding: 32px 20px 68px 20px;
  max-width: 1120px;
  margin: 0 auto;
}

#faq > .title {
  text-align: center;
  font-weight: 900;
  font-size: 24px;
  letter-spacing: 0.1em;
}

#faq .faqs {
  display: flex;
  flex-direction: column;
  row-gap: 24px;
}

#faq .faqs .faq {
  display: flex;
  flex-direction: column;
  column-gap: 8px;
  row-gap: 8px;
}

#faq .question-container {
  display: flex;
  box-shadow: 0px 0.5px 1px rgba(0, 0, 0, 0.25);
  border-radius: 8px;
  overflow: hidden;
}

#faq .question-container .icon {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 10px;

  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 20px;
  color: #ffffff;
  background: #2db7af;
}

#faq .question-container .title {
  font-weight: 700;
  font-size: 14px;

  padding: 10px 12px;
}

#faq .answer-container {
  display: flex;
  box-shadow: 0px 0.5px 1px rgba(0, 0, 0, 0.25);
  border-radius: 8px;
  overflow: hidden;
}

#faq .answer-container .icon {
  display: flex;
  justify-content: center;
  padding: 24px 10px;

  color: #2db7af;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 20px;
}

#faq .answer-container .description {
  overflow: hidden;
  font-weight: 700;
  font-size: 14px;
  line-height: 180%;

  padding: 24px 8px 24px 12px;
}

#faq .description .attention {
  color: #2db7af;
  font-size: 12px;
}

#faq .description .occupations-list-container {
  min-height: 350px;
  overflow: auto;
}

#faq .description .occupations-list {
  width: 100%;
  max-width: auto;
  min-width: 600px;
}

@media screen and (min-width: 768px) {
  #faq {
    row-gap: 80px;
    padding: 120px 0;
  }

  #faq > .title {
    font-size: 48px;
  }

  #faq .faqs {
    row-gap: 80px;
    max-width: 1120px;
    margin: 0 auto;
  }

  #faq .question-container .icon {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 32px;

    font-size: 40px;
  }

  #faq .question-container .title {
    font-size: 20px;

    padding: 25px 27px;
  }

  #faq .answer-container .icon {
    padding: 0 32px;

    font-size: 40px;
  }

  #faq .answer-container .description {
    font-size: 20px;
    padding: 25px 27px;
  }

  #faq .description .attention {
    color: #2db7af;
    font-size: 16px;
  }

  #faq .description .occupations-list-container {
    min-height: 500px;
    overflow: auto;
  }

  #faq .description .occupations-list {
    margin-top: 32px;
  }
}

#faq .question-container {
  cursor: pointer;
  position: relative;
}

#faq .toggle-icon {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  width: 14px;
  height: 14px;
}

#faq .toggle-icon::before,
#faq .toggle-icon::after {
  content: "";
  position: absolute;
  background-color: #2db7af;
  transition: transform 0.3s ease;
}

#faq .toggle-icon::before {
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  transform: translateY(-50%);
}

#faq .toggle-icon::after {
  top: 0;
  bottom: 0;
  left: 50%;
  width: 1px;
  transform: translateX(-50%);
}

#faq .question-container.active .toggle-icon::after {
  transform: translateX(-50%) rotate(90deg);
}

#faq .answer-container {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
}

#faq .answer-container.active {
  max-height: 1000px;
  transition: max-height 0.5s ease-in;
}

/********************/
/* CTA */
/********************/

