
.navbar a {
  color: var(--text-color);
}

.sitemap-container {
  min-height: 70vh !important;
  max-width: 1200px;
  margin: 10rem auto 5rem;
  padding: 2rem;
}

.sitemap-container h1 {
  font-size: var(--font-size-h1);
  color: var(--title-color);
  text-align: center;
  margin-bottom: 3rem;
}

.sitemap-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}

.sitemap-section {
  background: #ffffff;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  border-radius: 1.5rem;
  padding: 2rem;
  transition: transform 0.3s, box-shadow 0.3s;
}

.sitemap-section:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.sitemap-section h2 {
  font-size: var(--font-size-h3);
  color: var(--text-color);
  margin-bottom: 1rem;
  border-bottom: 2px solid var(--button-color);
  display: inline-block;
}

.sitemap-section ul {
  list-style: none;
}

.sitemap-section ul li {
  margin-bottom: 0.8rem;
}

.sitemap-section ul li a {
  font-size: var(--font-size-text);
  color: var(--text-color);
  transition: color 0.3s;
}

.sitemap-section ul li a:hover {
  color: var(--button-color);
}

@media screen and (max-width: 768px) {
  #menu-icon svg {
    color: var(--text-color);
  }
}

@media (max-width: 600px) {
  .sitemap-container {
    padding: 1rem;
  }
}
