.help-navbar {
  position: sticky;
  top: 0;
  z-index: 100;
}

.help-logo {
  height: 32px;
}

.help-brand-title {
  font-weight: 700;
  color: #4a148c;
}

.help-wrap {
  padding: 24px 0 40px;
}

.help-wrap .col-lg-8 {
  max-width: 900px;
  margin: 0 auto;
}

.help-header h2 {
  font-weight: 700;
  color: var(--nav-link-active);
}

.help-subtitle {
  color: var(--light-text);
  max-width: 600px;
  margin: 0 auto;
}

.help-quick-links {
  gap: 0.5rem;
}

.help-quick-links .btn {
  border-radius: 20px;
}

.help-section {
  background:
    radial-gradient(circle at 50% 50%, rgba(93, 101, 255, 0.25) 0%, transparent 60%),
    linear-gradient(135deg, rgba(13, 16, 35, 0.92) 0%, rgba(5, 8, 20, 0.85) 100%);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(109, 125, 255, 0.2);
  border-radius: 26px;
  padding: 2rem 2.5rem;
  box-shadow: 0 20px 50px rgba(4, 6, 20, 0.65);
  color: var(--text-color);
}

.help-section + .help-section {
  margin-top: 1.5rem;
}

.help-section-title {
  font-size: 1.4rem;
  margin-bottom: 1rem;
  font-weight: 700;
  color: var(--nav-link-active);
}

.help-list {
  padding-right: 1.2rem;
}

.help-list li {
  margin-bottom: 0.5rem;
}

.help-section p,
.help-section li {
  color: var(--text-color);
}

.help-note {
  margin-top: 0.75rem;
  font-size: 0.9rem;
  color: var(--light-text);
  background: rgba(255, 255, 255, 0.03);
  border-radius: 10px;
  padding: 0.6rem 0.9rem;
}

.help-section a {
  color: var(--nav-link-active);
}

.help-section a:hover {
  text-decoration: underline;
}


