.help-section {
  padding: 80px 20px;
  background: #0d0d0d;
  display: flex;
  justify-content: center;
  border-top: 1px solid #2a2a2a;
}

.help-container {
  max-width: 900px;
  text-align: center;
}

.help-title {
  font-size: 2.2rem;
  font-family: 'Playfair Display', serif;
  color: #f0ece4;
  margin-bottom: 20px;
}

.help-text {
  font-size: 1rem;
  color: rgba(240, 236, 228, 0.7);
  line-height: 1.7;
  margin-bottom: 30px;
  font-family: 'Montserrat', sans-serif;
}

.help-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-bottom: 35px;
}

.help-feature {
  font-size: 0.85rem;
  color: #c9a84c;
  border: 1px solid rgba(201, 168, 76, 0.2);
  padding: 10px;
  border-radius: 6px;
  background: rgba(201, 168, 76, 0.05);
}

.help-btn {
  padding: 14px 26px;
  background: #25D366;
  border: none;
  color: #0d0d0d;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 6px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.help-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3);
}