#faq .inner-920 {
  margin: 100px auto 60px;
}
@media screen and (width <= 768px) {
  #faq .inner-920 {
    margin: 30px auto 60px;
  }
}
#faq .faq-wrapper {
  margin: 0 0 60px;
}
#faq .faq-item {
  border-bottom: 1px dotted var(--color-black);
}
#faq .faq-item:first-child {
  border-top: 1px dotted var(--color-black);
}
#faq .faq-question {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 15px 15px 50px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
@media screen and (width <= 768px) {
  #faq .faq-question {
    padding: 10px 10px 10px 30px;
  }
}
#faq .faq-question::before {
  position: absolute;
  top: 50%;
  left: 20px;
  font-family: Lexend, sans-serif;
  font-size: 22px;
  font-weight: 500;
  color: var(--color-green);
  content: "Q";
  transform: translateY(-50%);
}
@media screen and (width <= 768px) {
  #faq .faq-question::before {
    left: 10px;
  }
}
#faq .faq-question h3 {
  flex: 1;
  padding: 10px 20px;
  margin: 0;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.5;
}
@media screen and (width <= 768px) {
  #faq .faq-question h3 {
    font-size: 12px;
  }
}
#faq .faq-question .faq-arrow {
  flex-shrink: 0;
  width: 12px;
  height: 12px;
  transition: transform 0.3s ease;
  transform: rotate(0deg);
  object-fit: contain;
}
#faq .faq-question .faq-arrow.rotated {
  transform: rotate(180deg);
}
#faq .faq-answer {
  overflow: hidden;
}
#faq .faq-answer .faq-answer-content {
  position: relative;
  padding: 10px 70px 20px;
}
@media screen and (width <= 768px) {
  #faq .faq-answer .faq-answer-content {
    padding: 10px 50px 20px;
  }
}
#faq .faq-answer .faq-answer-content::before {
  position: absolute;
  top: 15px;
  left: 20px;
  font-family: Lexend, sans-serif;
  font-size: 22px;
  font-weight: 500;
  color: var(--color-answer-green);
  content: "A";
}
@media screen and (width <= 768px) {
  #faq .faq-answer .faq-answer-content::before {
    left: 10px;
  }
}
#faq .faq-answer p {
  margin: 0;
  font-size: 14px;
  line-height: 2;
}
@media screen and (width <= 768px) {
  #faq .faq-answer p {
    font-size: 13px;
  }
}
