:root {
  --help-orange: #d1670e;
  --help-orange-dark: #b8590c;
  --help-ink: #152033;
  --help-muted: #667085;
  --help-line: #e8edf2;
  --help-soft: #fff8f1;
}

body.help-page {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  -webkit-font-smoothing: antialiased;
}

.help-main {
  flex: 1 1 auto;
  width: 100%;
  padding: 1.75rem 1.25rem 2.5rem;
}

.help-shell {
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
  background: #fff;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.75);
  box-shadow:
    0 0 0 1px rgba(209, 103, 14, 0.22),
    0 16px 36px rgba(0, 0, 0, 0.12),
    0 36px 72px rgba(55, 22, 0, 0.2);
  overflow: hidden;
}

.help-shell-accent {
  height: 5px;
  background: linear-gradient(90deg, #ff9a3c, var(--help-orange), #9a4a0a);
}

.help-header {
  padding: 1.75rem 2rem 1.35rem;
  border-bottom: 1px solid var(--help-line);
  background:
    radial-gradient(90% 120% at 0% 0%, rgba(209, 103, 14, 0.07), transparent 55%),
    #fff;
}

.help-header h1 {
  margin: 0 0 0.4rem;
  font-size: 1.9rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--help-ink);
  line-height: 1.2;
}

.help-header p {
  margin: 0;
  font-size: 1rem;
  color: var(--help-muted);
  line-height: 1.5;
}

.help-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  padding: 1rem 1.5rem;
  background: #f7f8fa;
  border-bottom: 1px solid var(--help-line);
}

.help-nav a {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 0.9rem;
  border-radius: 999px;
  border: 1px solid #e4e7ec;
  background: #fff;
  color: var(--help-ink);
  text-decoration: none;
  font-size: 0.86rem;
  font-weight: 600;
  transition: border-color 0.15s ease, color 0.15s ease, background 0.15s ease;
}

.help-nav a:hover {
  border-color: rgba(209, 103, 14, 0.45);
  color: var(--help-orange-dark);
  background: var(--help-soft);
}

.help-body {
  padding: 0.5rem 1.5rem 1.5rem;
}

.faq-section {
  margin: 1.35rem 0 1.75rem;
}

.faq-section h2 {
  margin: 0 0 0.85rem;
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--help-ink);
}

.faq-item {
  border: 1px solid var(--help-line);
  border-radius: 12px;
  background: #fff;
  margin-bottom: 0.65rem;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(20, 30, 45, 0.03);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin: 0;
  padding: 0.95rem 1.1rem;
  font-size: 0.98rem;
  font-weight: 650;
  color: var(--help-ink);
  cursor: pointer;
  background: #fbfcfd;
  user-select: none;
  transition: background 0.15s ease;
}

.faq-question:hover {
  background: var(--help-soft);
}

.faq-question::after {
  content: '+';
  flex-shrink: 0;
  width: 1.4rem;
  height: 1.4rem;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--help-orange);
  background: var(--help-soft);
  line-height: 1;
}

.faq-item.is-open .faq-question::after {
  content: '−';
}

.faq-answer {
  display: none;
  padding: 0 1.15rem 1.1rem;
  font-size: 0.96rem;
  line-height: 1.65;
  color: var(--help-muted);
  border-top: 1px solid transparent;
}

.faq-item.is-open .faq-answer {
  display: block;
  border-top-color: var(--help-line);
  padding-top: 0.9rem;
}

.contact-box {
  margin: 1.75rem 1.5rem 1.75rem;
  padding: 1.5rem 1.35rem;
  text-align: center;
  border-radius: 14px;
  border: 1px solid rgba(209, 103, 14, 0.22);
  background:
    radial-gradient(90% 120% at 50% 0%, rgba(209, 103, 14, 0.1), transparent 60%),
    #fffaf4;
}

.contact-box h3 {
  margin: 0 0 0.4rem;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--help-ink);
}

.contact-box p {
  margin: 0 0 1rem;
  color: var(--help-muted);
  font-size: 0.96rem;
  line-height: 1.5;
}

.contact-box .help-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0.7rem 1.25rem;
  border-radius: 10px;
  background: var(--help-orange);
  color: #fff;
  font-size: 0.95rem;
  font-weight: 650;
  text-decoration: none;
  box-shadow: 0 8px 18px rgba(209, 103, 14, 0.25);
  transition: background 0.15s ease;
}

.contact-box .help-cta:hover {
  background: var(--help-orange-dark);
}

@media (max-width: 720px) {
  .help-main {
    padding: 1.15rem 0.85rem 1.75rem;
  }

  .help-header {
    padding: 1.35rem 1.2rem 1.15rem;
  }

  .help-header h1 {
    font-size: 1.55rem;
  }

  .help-nav {
    padding: 0.85rem 1rem;
    flex-wrap: nowrap;
    overflow-x: auto;
  }

  .help-nav a {
    white-space: nowrap;
  }

  .help-body {
    padding: 0.35rem 1rem 1rem;
  }

  .contact-box {
    margin: 1.25rem 1rem 1.35rem;
  }
}
