.pixden-faq-wrapper.container {
  margin: 0 auto;
  padding: 2rem 1rem;
}

.pixden-faq-accordion {
  border-top: 1px solid #ddd;
}

.pixden-faq-item {
  border-bottom: 1px solid #ddd;
}

.pixden-faq-question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 0.75em 1em;
  font-size: 1.1em;
  cursor: pointer;
  font-weight: 600;
  color: inherit;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.pixden-faq-question:hover {
  background-color: #f9f9f9;
}

.faq-toggle-icon {
  font-size: 1.3em;
  transition: transform 0.3s ease;
}

.pixden-faq-item.active .faq-toggle-icon {
  transform: rotate(45deg);
}

.pixden-faq-answer {
  display: none;
  padding: 0 1em 1em;
  border-top: 1px solid #eee;
  animation: fadeIn 0.3s ease;
}

.pixden-faq-title {
  text-align: center;
  font-weight: 700;
  font-size: 2em;
  margin-bottom: 1.5rem;
  color: inherit;
}

.faq_wrapper {
  background: linear-gradient(
		0deg,
		rgb(84, 127, 186) 0%,
		rgba(255, 255, 255, 1) 50%
	) !important;
}

@keyframes fadeIn {
  from {opacity: 0;}
  to {opacity: 1;}
}
