.sitemap-page {
  padding: 60px 0;
  background: #fafafa;
  min-height: 60vh;
}
.sitemap-header {
  margin-bottom: 40px;
  border-bottom: 1px solid #e5e7eb;
  padding-bottom: 20px;
}
.sitemap-header h1 {
  font-size: 2rem;
  font-weight: 700;
  margin: 0 0 8px;
  color: #111827;
}
.sitemap-header p {
  color: #6b7280;
  margin: 0;
}
.sitemap-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
@media (max-width: 992px) {
  .sitemap-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .sitemap-grid { grid-template-columns: 1fr; gap: 30px; }
}
.sitemap-section h2 {
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #374151;
  margin: 0 0 16px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--primary, #2563eb);
}
.sitemap-section ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.sitemap-section li {
  padding: 6px 0;
  border-bottom: 1px solid #f3f4f6;
}
.sitemap-section li:last-child {
  border-bottom: none;
}
.sitemap-section li.section-link {
  margin-bottom: 8px;
  border-bottom: none;
}
.sitemap-section li.section-link a {
  color: var(--primary, #2563eb);
  font-weight: 500;
}
.sitemap-section a {
  color: #374151;
  text-decoration: none;
  transition: color 0.15s;
  display: block;
}
.sitemap-section a:hover {
  color: var(--primary, #2563eb);
}
