.as-sitemap-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
}

.as-sitemap-column h3 {
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 24px;
  color: var(--text-dark);
  position: relative;
  padding-bottom: 12px;
}

.as-sitemap-column h3::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background: var(--primary-color);
}

.as-sitemap-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.as-sitemap-list li {
  margin-bottom: 12px;
}

.as-sitemap-list a {
  text-decoration: none;
  color: #444444;
  font-size: 15px;
  font-weight: 600;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 10px;
}

.as-sitemap-list a i {
  font-size: 12px;
  color: var(--secondary-color);
  transition: transform 0.3s ease;
}

.as-sitemap-list a:hover {
  color: var(--secondary-color);
  padding-left: 5px;
}

.as-sitemap-list a:hover i {
  transform: translateX(3px);
}

.as-sub-list {
  list-style: none;
  padding: 8px 0 8px 24px;
  margin: 0;
  border-left: 1px dashed #ddd;
  margin-left: 6px;
  margin-top: 8px;
}

.as-sub-list li {
  margin-bottom: 8px;
}

.as-sub-list a {
  font-size: 14px;
  font-weight: 500;
  color: #666;
}

@media (max-width: 768px) {
  .as-hero {
    min-height: 15vh;
  }

  .as-sitemap {
    padding: 50px 0;
  }
}