.faq {
  padding-top: 60px;
  padding-bottom: 60px;
}

.faq-accordion {
  max-width: 680px;
  margin: 0 auto;
}

.faq-item {
  border-top: 1px solid #aba8a1;
}

.faq-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 13px 0;
  cursor: pointer;
}

.faq-text {
  font-family: var(--font-secondary);
  color: var(--color-primary);
  font-size: 40px;
  font-weight: 800;
  text-align: left;
  text-transform: uppercase;
  margin-bottom: 30px;
}

.faq-header h3 {
  color: var(--color-primary);
  font-size: 17px;
  font-weight: 600;
  text-align: left;
  line-height: 22px;
}

.faq-toggle-icon {
  width: 18px;
  height: 18px;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle-icon {
  content: url("https://img.libidion.com/minus.webp");
  transform: rotate(180deg);
}

.faq-content {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  padding: 0;
  transition: max-height 0.3s ease, opacity 0.3s ease, padding 0.3s ease;
}

.faq-content p {
  font-size: 15px;
  line-height: 20px;
}

.faq-item.active .faq-content {
  max-height: 200px;
  opacity: 1;
  padding: 0 0 15px 0;
}

@media (max-width: 768px) {
  .faq {
    padding-top: 50px;
    padding-bottom: 45px;
  }

  .faq-accordion {
    max-width: 100%;
  }
}