.sitemap {
  padding: 4rem 2rem;
  background-color: transparent;
  /* background-color: #f8f8f8; */
  text-align: center;
}

.sitemap h1 {
  font-size: 2rem;
  margin-bottom: 2rem;
  color: #222;
  font-weight: 700;
  letter-spacing: 1px;
}

.sitemap-list {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: 800px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.5rem;
}

.sitemap-list li {
  margin: 0;
}

.sitemap-link {
  display: block;
  background: #fff;
  border: 2px solid #e0e0e0;
  border-radius: 12px;
  padding: 1rem;
  text-decoration: none !important;
  color: #333;
  font-weight: 600;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
  /* box-shadow: 0 12px 32px rgba(0, 0, 0, 0.65); */
  transition: all 0.3s ease;
  position: relative;
}

.sitemap-link::after {
  display: none !important;
}

.sitemap-link:hover {
  background-color: #44515a;
  color: #fff;
  text-decoration: none !important;
  border-color: #3C474F;
  /* border-color: #2a3f7c; */
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.65);
}
