/* Support/FAQ Page Styles */

.container {
  max-width: 680px;
  margin: 0 auto;
  padding: 24px 20px 60px;
}

/* FAQ Items */
.faq-item {
  border-bottom: 1px solid #eee;
  padding: 20px 0;
}

.faq-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.faq-item h3 {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #333;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.faq-item h3::before {
  content: 'Q';
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  background: #1976D2;
  color: white;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 700;
  flex-shrink: 0;
}

.faq-item p {
  font-size: 14px;
  margin-bottom: 8px;
  margin-left: 32px;
  color: #555;
}

.faq-item p:last-child {
  margin-bottom: 0;
}
