#FQA .component_title {
  text-align: start;
  flex: 1;
}

@media screen and (max-width: 768px) {
  #FQA .component_title h1 {
    font-size: 20px !important;
  }

  #FQA .component_decsription {
    font-size: 16px !important;
  }
}

#FQA {
  padding: 50px 20px;
  color: var(--home-text-color-secondary);
}

#FQA .container {
  text-align: right;
}

#FQA .main {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

#FQA .questions {
  width: 50%;
}

#FQA .image {
  max-width: 45%;

  overflow: hidden;
}
#FQA .image img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

#FQA .content {
  width: 100%;
  margin-bottom: 12px;
  border-radius: 2px;
  cursor: pointer;
  padding: 3px 14px;
  border-left: none;
  border-top: none;
  border-bottom: none;
}

#FQA .question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
}

#FQA .content p {
  font-weight: 400;
  font-size: clamp(0.75rem, 0.5739rem + 0.7512vw, 1.25rem);
  line-height: 25px;
}

#FQA .anwser {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.5s ease, opacity 0.5s ease;
}

#FQA .content.active .anwser {
  max-height: 1000px;
  opacity: 1;
}

#FQA .question h3 {
  margin: 0;
  line-height: 1.2;
  font-size: clamp(1rem, 0.8239rem + 0.7512vw, 1.5rem);
}

#FQA .question span i {
  font-size: clamp(0.875rem, 0.6549rem + 0.939vw, 1.5rem);
  transition: transform 0.5s ease;
  color: var(--white-color);
}

#FQA .content.active span i {
  transform: rotate(180deg);
}

@media (max-width: 768px) {
  #FQA {
    padding: 20px 0;
  }

  #FQA .main {
    flex-direction: column-reverse;
    padding: 10px;
    gap: 10px;
  }

  #FQA .questions {
    width: 100%;
  }

  #FQA .image{
    max-width: 100%;
  }
  #FQA .image img {
    height: 100%;
  }
}
