.accordion-item {
  border-radius: 8px;
  margin-bottom: 16px;
  background-color: #3c2f3b;
  padding: 24px;
  overflow: hidden;
}

.accordion-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  font-weight: 600;
  color: #fff;
}

.accordion-arrow {
  transition: transform 0.1s ease;
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  color: #d9d9d9;
}

.accordion-content p {
  padding-top: 16px;
}

.accordion-toggle {
  display: none;
}

/* Handle accordion open state */
input[type='checkbox']:checked ~ .accordion-content {
  max-height: 200px;
}

input[type='checkbox']:checked ~ label .accordion-arrow {
  transform: rotate(180deg);
}

/* Hover effects */
.accordion-title:hover {
  opacity: 0.9;
}

/* Mobile styles */
@media (max-width: 768px) {
  .accordion-item {
    padding: 16px;
  }

  .accordion-content p {
    font-size: 0.95rem;
    padding-top: 12px;
  }
}
