/* Simple FAQ list styles */
.faq-list {
  padding: 0 30px;
}

.faq-item {
  background: #e88d42aa;
  border-radius: 8px;
  padding: 16px 16px;
  margin-top: 20px;
  border: 1px solid #00000033;
  position: relative;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: #2b2b2b;
  flex: 1;
}

.faq-icon {
  font-size: 1.1rem;
  color: #2b2b2b;
  transition: transform 0.3s ease;
  margin-left: 0.5rem;
}

/* Rotate chevron when open */
.faq-item.open .faq-icon {
  transform: rotate(180deg);
}

.faq-content {
  background: #fff;
  border: 1px solid #ccc;
  border-top: none;
  border-radius: 0 0 10px 10px;
  padding: 16px 20px;
  font-size: 16px;
  transition: max-height 0.3s ease, opacity 0.3s ease;
  opacity: 1;
}
