/* Support Page Specific Styles */

/* Contact Box */
.contact-box {
  background: #E3F2FD;
  border-radius: 12px;
  padding: 24px;
  margin: 20px 0;
  text-align: center;
  border: 1px solid rgba(25, 118, 210, 0.1);
}

.contact-box p {
  margin-bottom: 10px;
  color: #555;
  font-size: 14px;
}

.contact-box p:last-child {
  margin-bottom: 0;
}

.email-link {
  color: #1976D2;
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  transition: color 0.2s ease;
}

.email-link:hover {
  color: #1565C0;
}

/* 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;
}
