:root {
  --teal: #289492;
  --ltTeal: #b7fbfa;
  --purple: #a33f97;
  --ltPurple: #faf2ff;
  --orange: #fbab34;
  --ltOrange: #fde7c8;
  --ltTeal: #e1f9fc;
  --ltGreen: #edfce9;
  --ltPink: #fce9e3;
 

.accordion {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 30px;
  /* box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2); */
}

.accordion-item {
  border-bottom: 1px solid #e5e7eb;
}

.accordion-item:last-child {
  border-bottom: none;
}

.accordion-header {
  background: #f9fafb;
  padding: 20px 24px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
}

/* .accordion-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: #1f2937;
} */

.accordion-title i {
  color: var(--purple);
}

.accordion-icon {
  width: 24px;
  height: 24px;
  transition: transform 0.3s ease;
  flex-shrink: 0;
  margin-left: 16px;
}

.accordion-icon svg {
  width: 100%;
  height: 100%;
  fill: #6b7280;
}

.accordion-item.active .accordion-icon {
  transform: rotate(180deg);
}

.accordion-content {
  height: 0;
  overflow: hidden;
  transition: height 0.3s ease;
  margin-top:30px;
}
