:root {
  --brand: #EFBA32;
  --muted: #6b6b6b;
  --border: #e4e4e4;
  --radius: 12px;
}

.help-category-page {
  padding: 80px 5%;
  max-width: 1300px;
  margin: 0 auto;
  color: #111;
  font-family: Inter, system-ui, sans-serif;
}

/* HEADER */
.hc-header {
  text-align: center;
  margin-bottom: 40px;
}
.hc-title h1 {
  font-size: 2.5rem;
  margin-bottom: 10px;
}
.hc-subtitle {
  color: var(--muted);
  font-size: 1.1rem;
}
.hc-tabs {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 20px;
}
.hc-tab {
  padding: 10px 22px;
  border-radius: 8px;
  background: #f8f8f8;
  text-decoration: none;
  color: #000;
  font-weight: 600;
  border: 1px solid transparent;
  transition: 0.3s ease;
}
.hc-tab:hover {
  background: var(--brand);
  color: #fff;
}
.hc-tab.active {
  background: var(--brand);
  color: #fff;
}

/* BREADCRUMB */
.hc-breadcrumb {
  margin-bottom: 24px;
  color: var(--muted);
  font-size: 0.9rem;
}
.hc-breadcrumb a {
  text-decoration: none;
  color: var(--brand);
}
.hc-breadcrumb span {
  margin: 0 6px;
}

/* BODY LAYOUT */
.hc-body {
  display: grid;
  grid-template-columns: 250px 1fr;
  gap: 30px;
}
.hc-sidebar {
  position: sticky;
  top: 80px;
  align-self: start;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  background: #fafafa;
}
.hc-sidebar h2 {
  font-size: 1.1rem;
  margin-bottom: 12px;
}
.hc-sidebar ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.hc-sidebar li {
  margin-bottom: 8px;
}
.hc-sidebar a {
  display: block;
  padding: 8px 12px;
  border-radius: 8px;
  text-decoration: none;
  color: #333;
  background: #fff;
  border: 1px solid transparent;
  transition: 0.3s ease;
}
.hc-sidebar a:hover {
  background: #fff5df;
  border-color: var(--brand);
}
.hc-sidebar a.active {
  background: var(--brand);
  color: #fff;
}

/* MAIN CONTENT */
.hc-main h1 {
  font-size: 2rem;
  margin-bottom: 15px;
}
.hc-intro {
  color: #333;
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 40px;
}

/* SUBCATEGORIES */
.hc-subcats h2 {
  margin-bottom: 20px;
}
.hc-subcat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}
.hc-subcat-card {
  display: block;
  padding: 18px;
  border-radius: 10px;
  background: #fff;
  border: 1px solid var(--border);
  text-decoration: none;
  color: #111;
  transition: all 0.3s ease;
}
.hc-subcat-card:hover {
  background: var(--brand);
  color: #fff;
  transform: translateY(-3px);
}

/* QUESTIONS */
.hc-questions h2 {
  margin: 40px 0 20px;
}
.hc-question-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.hc-question {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: #fff;
  overflow: hidden;
}
.hc-q-title {
  width: 100%;
  text-align: left;
  background: #f8f8f8;
  border: none;
  padding: 14px 18px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
}
.hc-q-title:hover {
  background: #fff4db;
}
.hc-q-body {
  padding: 16px 18px;
  background: #fffef8;
  border-top: 1px solid var(--border);
  animation: fadeIn 0.3s ease-in-out;
}
.hc-q-body p {
  margin-bottom: 10px;
  color: #333;
}
.hc-readmore {
  text-decoration: none;
  color: var(--brand);
  font-weight: 600;
}
.hc-readmore:hover {
  text-decoration: underline;
}
.hc-empty {
  color: var(--muted);
  font-style: italic;
}

/* ANIMATIONS */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-5px); }
  to { opacity: 1; transform: translateY(0); }
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .hc-body {
    grid-template-columns: 1fr;
  }
  .hc-sidebar {
    position: static;
    margin-bottom: 30px;
  }
}