/* help.css */

.help-hero {
  background: linear-gradient(135deg, #4f46e5 0%, #06b6d4 100%);
  border-radius: 1.5rem;
  margin: 2rem auto 3rem;
  max-width: 1100px;
  padding-inline: clamp(1rem, 4vw, 3rem);
  box-shadow: 0 1.75rem 3.5rem rgba(79, 70, 229, 0.35);
}

.help-hero__title,
.help-hero__subtitle {
  color: #111827;
}

.help-quicklink {
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.help-quicklink:hover,
.help-quicklink:focus {
  transform: translateY(-4px);
  box-shadow: 0 1.5rem 3rem rgba(15, 23, 42, 0.12);
}

.help-quicklink__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: 0.75rem;
  font-size: 1.25rem;
}

.help-section .help-checklist {
  padding-left: 1.4rem;
  list-style: none;
}

.help-section .help-checklist li {
  position: relative;
  margin-bottom: 0.75rem;
  color: #475569;
}

.help-section .help-checklist li::before {
  content: '\f00c';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  color: #22c55e;
  position: absolute;
  left: -1.4rem;
  top: 0.1rem;
}

.accordion-button:not(.collapsed) {
  background-color: rgba(79, 70, 229, 0.08);
  color: #312e81;
  box-shadow: none;
}

.accordion-button:focus {
  box-shadow: 0 0 0 0.25rem rgba(99, 102, 241, 0.25);
}

@media (max-width: 575.98px) {
  .help-hero {
    border-radius: 1rem;
  }

  .help-quicklink__icon {
    width: 2.75rem;
    height: 2.75rem;
  }
}
