/* FAQ Styles */
.faqs__body {
  width: 100%;
}

.faqs__list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
}

.faqs__item {
  border-radius: 10px;
  background-color: #fff;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  transition: all 0.3s ease;
}

.faqs__item.active .faqs__toggle {
  transform: rotate(180deg);
}

.faqs__question {
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.faqs__question h3 {
  font-size: 18px;
  font-weight: 600;
  color: #0F172A;
  margin: 0;
}

.faqs__toggle {
  transition: transform 0.3s ease;
}

.faqs__answer {
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faqs__answer p {
  margin: 0;
  padding-bottom: 20px;
  line-height: 1.6;
  color: #64748B;
}

@media (max-width: 768px) {
  .faqs__question h3 {
    font-size: 16px;
  }
}