.faq-accordion {
  border-radius: 8px;
  overflow: hidden;
  font-family: "Segoe UI", sans-serif;
}

.faq-item {
  border-bottom: 1px solid #ddd;
  transition: background 0.3s ease;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.25);
}

.faq-question {
  background: transparent;
  padding: 15px 20px;
  width: 100%;
  border: none;
  text-align: left;
  font-size: 1rem;
  font-weight: 600;
  position: relative;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-question.active,
.faq-question:hover {
  /* background-color: var(--light-orange); */
  /* color: var(--white); */
  background-color: #ffffff; 
  color: #d86e43
} 
.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 20px; 
  font-size: 0.95rem;
  line-height: 1.6;
  transition: max-height 0.4s ease;
  margin: 20px;
}

.faq-answer p {
  margin: 15px 0;
}

.icon {
  font-size: 1.2rem;
  transition: transform 0.3s ease;
}

.icon::before {
  content: "+";
  display: inline-block;
}

.rotate::before {
  content: "-";
}
