.help-section {
  background: linear-gradient(135deg, #7c5cff, #ff71a6);
  color: #fff;
  padding: 40px 20px;
  border-radius: 16px;
  margin: 30px auto;
  max-width: 900px;
  box-shadow: 0 8px 24px rgba(0,0,0,.3);
}

.help-section h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 10px;
}

.help-section .intro {
  text-align: center;
  margin-bottom: 30px;
  font-size: 1.1rem;
}

.faq, .contact {
  background: rgba(255,255,255,.1);
  padding: 20px;
  border-radius: 12px;
  margin-bottom: 20px;
}

.faq h3, .contact h3 {
  margin-top: 0;
  font-size: 1.3rem;
}

.faq ul {
  list-style: none;
  padding: 0;
}

.faq li {
  margin: 10px 0;
  line-height: 1.6;
}

.contact-options {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 12px;
}

.btn {
  display: inline-block;
  padding: 10px 16px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: bold;
  transition: .3s;
}

.btn-primary {
  background: #fff;
  color: #7c5cff;
}

.btn-primary:hover {
  background: #e0e0ff;
}

.btn-light {
  background: #f9f9f9;
  color: #333;
}

.btn-light:hover {
  background: #ddd;
}
