/* ─── Accordion Styles ───────────────────────────────────────── */

.accordion-item {
  background: #fff;
  border: 1.5px solid #e5e7eb;
  border-radius: 16px;
  overflow: hidden;
  transition: border-color 0.2s, box-shadow 0.2s;
  margin-bottom: 12px;
}

.accordion-item:hover {
  border-color: #d1d5db;
}

.accordion-item.active {
  border-color: #C8402E;
  box-shadow: 0 4px 16px rgba(200, 64, 46, 0.08);
}

.accordion-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  cursor: pointer;
  background: #fff;
  border: none;
  width: 100%;
  text-align: left;
  font-family: 'Inter', sans-serif;
  transition: background 0.18s;
}

.accordion-header:hover {
  background: #fafafa;
}

.accordion-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: #141943;
}

.accordion-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #f3f4f6;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.2s, transform 0.3s;
}

.accordion-item.active .accordion-icon {
  background: rgba(200, 64, 46, 0.1);
  transform: rotate(180deg);
}

.accordion-content {
  display: none;
  padding: 0 24px 20px;
  color: #6b7280;
  font-size: 0.95rem;
  line-height: 1.7;
}

.accordion-item.active .accordion-content {
  display: block;
}

/* FAQ variant */
.faq-item {
  background: #fff;
  border: 1.5px solid #e5e7eb;
  border-radius: 14px;
  overflow: hidden;
  transition: border-color 0.2s, box-shadow 0.2s;
  margin-bottom: 10px;
}

.faq-item.active {
  border-color: #C8402E;
  box-shadow: 0 4px 16px rgba(200, 64, 46, 0.08);
}

.faq-item .accordion-header {
  padding: 16px 20px;
}

.faq-item .accordion-content {
  padding: 0 20px 16px;
}
