.weachieve-faq-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.weachieve-faq-item {
  transition: all 0.3s ease;
}

.weachieve-faq-question {
  position: relative;
  width: 0px;
  margin-left: 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: left;
  cursor: pointer;
  border: none;
  background: transparent;
  font-family: inherit;
  padding: 30px 45px;
  background-color: #f0eef1;
  transform: skewX(-9deg);
  transition: height 0.3s ease;
}

.weachieve-faq-question.is-animating {
  animation: expandFaq 0.5s forwards;
}

@keyframes expandFaq {
  from {
    width: 0px;
  }
  to {
    width: calc(100% - 80px);
  }
}

.weachieve-faq-question.animation-complete {
  width: calc(100% - 80px) !important;
}

.weachieve-faq-animator {
  position: absolute;
  right: -54px;
  z-index: 2;
  top: 0;
  width: 16px;
  height: 100%;
  background-color: #fb273c;
  opacity: 1;
}

.weachieve-faq-question.is-animating .weachieve-faq-animator {
  animation: faqAnimator 0.2s forwards 0.3s;
}

@keyframes faqAnimator {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

.weachieve-faq-question.animation-complete .weachieve-faq-animator {
  opacity: 0 !important;
}

.weachieve-faq-question::before {
  content: "+";
  font-size: 120px;
  font-family: "Bebas Kai Outline", Sans-serif;
  color: #fb273c;
  margin-right: 20px;
  position: absolute;
  left: -30px;
  top: 50%;
  transform: translateY(-50%);
}

.weachieve-faq-question[aria-expanded="true"]::before {
  content: "−";
}

.weachieve-faq-question::after {
  content: "";
  width: 35px;
  height: 100%;
  background-color: #f0eef1;
  position: absolute;
  right: -40px;
  top: 0;
}

.weachieve-faq-question:hover {
  opacity: 0.8;
}

.weachieve-faq-question:focus-visible {
  outline: 1px solid #fb273c;
  outline-offset: 2px;
}

.weachieve-faq-question:focus-visible::after {
  outline: 1px solid #fb273c;
  outline-offset: 2px;
}

.weachieve-faq-question-text {
  flex: 1;
  font-weight: 600;
  font-size: 20px;
  line-height: 26px;
  font-family: "Karla", sans-serif;
  transform: skewX(9deg);
  color: #181818;
  white-space: nowrap;
  overflow: hidden;
}

.weachieve-faq-question.animation-complete .weachieve-faq-question-text {
  white-space: normal !important;
}

.weachieve-faq-answer {
  overflow: hidden;
  transition: all 0.3s ease;
  max-height: 500px;
  height: auto;
  padding: 20px 45px;
  opacity: 0;
  transition: 0.5s ease;
}

.weachieve-faq-answer[hidden] {
  height: 0px;
}

.weachieve-faq-answer.animation-complete {
  opacity: 1 !important;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .weachieve-faq-question {
    width: calc(100% - 60px);
    margin-left: 20px;
    padding: 15px 25px;
  }

  .weachieve-faq-answer {
    padding: 10px 45px;
  }

  .weachieve-faq-question::before {
    font-size: 80px;
  }

  .weachieve-faq-question-text {
    font-size: 0.95em;
    line-height: 16px;
  }
}
