:root {
  --orange: #f08a1d;
  --rust:   #9d4824;
  --gold:   #b87e44;
  --ink:    #292524;
  --stone:  #fafaf9;
  --muted:  #78716c;
  --clay:   #f08a1d;
  --white:  #ffffff;
}

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background-color: var(--stone);
  color: var(--ink);
  line-height: 1.6;
  margin: 0;
  padding: 0;
}

.help-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 2rem;
}

header {
  background: var(--white);
  padding: 1rem 2rem;
  border-bottom: 1px solid #f1f1f1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 100;
}

.logo {
  height: 48px;
  display: block;
}

.nav-link {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s;
}

.nav-link:hover {
  color: var(--clay);
}

h1, h2, h3 {
  font-family: 'Playfair Display', serif;
  color: var(--ink);
}

.help-hero {
  text-align: center;
  padding: 4rem 1rem;
  background: white;
  border-bottom: 1px solid #eee;
  margin-bottom: 3rem;
}

.help-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.help-card {
  background: white;
  border: 1px solid #e7e5e4;
  border-radius: 16px;
  padding: 2rem;
  text-decoration: none;
  color: inherit;
  transition: transform 0.2s, border-color 0.2s;
}

.help-card:hover {
  transform: translateY(-4px);
  border-color: var(--clay);
  box-shadow: 0 10px 30px rgba(224, 122, 95, 0.1);
}

.help-card h3 {
  margin-top: 0;
  font-size: 1.5rem;
}

.help-card p {
  color: var(--muted);
  font-size: 0.9375rem;
}

.article-content {
  background: white;
  padding: 3rem;
  border-radius: 20px;
  border: 1px solid #eee;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.article-content img {
  max-width: 100%;
  border-radius: 12px;
  margin: 1.5rem 0;
  border: 1px solid #eee;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--clay);
  text-decoration: none;
  font-weight: 600;
  margin-bottom: 2rem;
}

.back-link:hover {
  text-decoration: underline;
}

footer {
  text-align: center;
  padding: 4rem 2rem;
  color: var(--muted);
  font-size: 0.875rem;
}
