.help-hero {
  background: linear-gradient(135deg, #ffd33b 0%, #f4c20d 100%);
  padding: 4rem 0 3rem;
  color: #212529;
}

.help-card {
  background: white;
  border-radius: 16px;
  padding: 2rem;
  height: 100%;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 2px solid #f0f0f0;
  text-decoration: none;
  display: block;
}

.help-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
  border-color: #ffd33b;
  text-decoration: none;
}

.help-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin: 0 auto 1.5rem;
  color: white;
}

.help-card h3 {
  color: #212529;
  margin-bottom: 1rem;
}

.help-card p {
  color: #6c757d;
  margin-bottom: 0;
}

.faq-preview {
  background: #f8f9fa;
  border-radius: 12px;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
}

.faq-preview h5 {
  color: #212529;
  font-size: 1rem;
  margin-bottom: 0.75rem;
  font-weight: 600;
}

.faq-preview p {
  color: #6c757d;
  font-size: 0.9rem;
  margin-bottom: 0;
}

.quick-link {
  display: flex;
  align-items: center;
  padding: 1rem;
  background: white;
  border-radius: 10px;
  text-decoration: none;
  color: #212529;
  transition: all 0.3s ease;
  margin-bottom: 0.75rem;
  border: 2px solid #f0f0f0;
}

.quick-link:hover {
  background: #ffd33b;
  border-color: #f4c20d;
  transform: translateX(10px);
  color: #212529;
  text-decoration: none;
}

.quick-link i {
  font-size: 1.5rem;
  margin-right: 1rem;
  color: #f4c20d;
}

.search-box {
  background: white;
  border-radius: 50px;
  padding: 1rem 2rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  max-width: 600px;
  margin: 0 auto 2rem;
}

.search-box input {
  border: none;
  outline: none;
  width: 100%;
  font-size: 1.05rem;
}

@media (max-width: 767px) {
  .help-hero {
    padding: 2rem 0 1.5rem;
  }
}
