.sitemap-page {
  padding: 4rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
  color: #e0e0e0;
  min-height: 80vh;
}

.sitemap-header {
  text-align: center;
  margin-bottom: 4rem;
  border-bottom: 1px solid #333;
  padding-bottom: 2rem;
}

.sitemap-header h1 {
  font-size: 3rem;
  color: #d4af37;
  font-family: 'Cormorant Garamond', serif;
  margin-bottom: 0.5rem;
}

.sitemap-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 3rem;
}

.sitemap-section {
  background: rgba(20, 20, 20, 0.6);
  padding: 2rem;
  border-radius: 10px;
  border: 1px solid #333;
  transition: all 0.3s ease;
}

.sitemap-section:hover {
  border-color: #8a2be2;
  background: rgba(30, 30, 40, 0.8);
}

.sitemap-section h2 {
  color: #b19cd9;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  border-bottom: 1px solid rgba(138, 43, 226, 0.3);
  padding-bottom: 0.5rem;
  font-family: 'Cormorant Garamond', serif;
}

.sitemap-section ul {
  list-style: none;
  padding: 0;
}

.sitemap-section li {
  margin-bottom: 0.8rem;
}

.sitemap-section a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.2s ease;
  font-size: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.sitemap-section a:hover {
  color: #d4af37;
  padding-left: 5px;
}

.sitemap-section a::before {
  content: '•';
  color: #8a2be2;
}