.help-container {
  max-width: 440px;
  margin: 60px auto 0 auto;
  padding: 32px 16px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.08);
  font-family: 'Poppins', sans-serif;
}
.help-title {
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 12px;
  text-align: center;
}
.help-desc {
  font-size: 1.08rem;
  color: #444;
  margin-bottom: 24px;
  text-align: center;
}
.contact-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.contact-item {
  display: flex;
  align-items: center;
  background: #f5f7fa;
  border-radius: 10px;
  padding: 15px 14px;
  margin-bottom: 18px;
  transition: background 0.2s;
}
.contact-item:hover {
  background: #eaf3fc;
}
.contact-icon {
  font-size: 2.1rem;
  color: #4f7cff;
  margin-right: 18px;
  width: 38px;
  text-align: center;
}
.contact-details {
  flex: 1;
}
.contact-label {
  font-size: 1.11rem;
  font-weight: 500;
  color: #333;
  margin-bottom: 2px;
}
.contact-link {
  font-size: 1.05rem;
  color: #0078ff;
  text-decoration: none;
  word-break: break-all;
}
.contact-link:hover {
  text-decoration: underline;
}
.help-footer {
  margin-top: 32px;
  font-size: 0.97rem;
  color: #868686;
  text-align: center;
}