.faq-shell {
  max-width: 860px;
}

.faq-card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 20px;
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.08);
}

.faq-subtitle {
  color: #475569;
  font-size: 1rem;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.faq-item {
  border: 1px solid #dbe2ea;
  border-radius: 16px;
  background: #f8fafc;
  overflow: hidden;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    background-color 0.2s ease;
}

.faq-item.is-open {
  background: #ffffff;
  border-color: #16a34a;
  box-shadow: 0 10px 30px rgba(22, 163, 74, 0.12);
}

.faq-question {
  width: 100%;
  border: 0;
  background: transparent;
  color: #0f172a;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.15rem 1.25rem;
  text-align: left;
  font-size: 1.08rem;
  font-weight: 500;
  line-height: 1.5;
}

.faq-question:hover {
  color: #166534;
}

.faq-icon {
  flex-shrink: 0;
  width: 2rem;
  height: 2rem;
  border-radius: 999px;
  background: #e2e8f0;
  color: #0f172a;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 700;
  transition:
    transform 0.2s ease,
    background-color 0.2s ease,
    color 0.2s ease;
}

.faq-item.is-open .faq-icon {
  background: #16a34a;
  color: #ffffff;
  transform: rotate(45deg);
}

.faq-answer {
  display: none;
  padding: 0 1.25rem 1.25rem;
  color: #475569;
  line-height: 1.7;
}

.faq-item.is-open .faq-answer {
  display: block;
}
