/* 메인 사이트맵 */
.sitemap-main {
  max-width: 1200px;
  margin: 60px auto;
  padding: 0 20px;
}

.sitemap-main h2 {
  text-align: center;
  font-size: 32px;
  margin-bottom: 40px;
  color: #222;
}

.sitemap-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.sitemap-card {
  background: #fff;
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.sitemap-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.1);
}

.sitemap-card h3 {
  font-size: 20px;
  margin-bottom: 16px;
  border-bottom: 2px solid #eee;
  padding-bottom: 6px;
  color: #222;
}

.sitemap-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sitemap-card li {
  margin-bottom: 10px;
}

.sitemap-card a {
  text-decoration: none;
  color: #444;
  transition: color 0.2s ease;
}

.sitemap-card a:hover {
  color: #0073aa;
  font-weight: 500;
}

/* Footer Links */
.sitemap-footer {
  background: #1f1f1f;
  padding: 30px 0;
  text-align: center;
}

.footer-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
}

.footer-links a {
  color: #aaa;
  text-decoration: none;
  font-size: 15px;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: #fff;
}