* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  background: #f8f9fa;
  min-height: 100vh;
}

/* Sitemap specific styles */
.sitemap-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
}

.sitemap-hero {
  background: linear-gradient(135deg, #0066cc 0%, #004499 100%);
  color: white;
  padding: 60px 40px;
  text-align: center;
  border-radius: 20px;
  margin-bottom: 40px;
  box-shadow: 0 10px 30px rgba(0, 102, 204, 0.3);
}

.sitemap-hero h1 {
  font-size: 2.5rem;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}

.sitemap-hero p {
  font-size: 1.1rem;
  opacity: 0.95;
  margin-bottom: 20px;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
  margin-top: 20px;
  font-size: 0.9rem;
}

.breadcrumb a {
  color: white;
  text-decoration: none;
  opacity: 0.9;
}

.breadcrumb a:hover {
  opacity: 1;
  text-decoration: underline;
}

.search-section {
  background: white;
  padding: 30px;
  border-radius: 15px;
  margin-bottom: 30px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.search-input-wrapper {
  position: relative;
  max-width: 600px;
  margin: 0 auto;
}

.search-input {
  width: 100%;
  padding: 15px 50px 15px 50px;
  font-size: 1rem;
  border: 2px solid #e0e0e0;
  border-radius: 50px;
  outline: none;
  transition: all 0.3s ease;
}

.search-input:focus {
  border-color: #0066cc;
  box-shadow: 0 0 0 4px rgba(0, 102, 204, 0.1);
}

.search-icon {
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  color: #666;
}

.clear-search {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: #666;
  cursor: pointer;
  display: none;
  font-size: 1.2rem;
}

.clear-search:hover {
  color: #333;
}

.sitemap-section {
  background: white;
  padding: 30px;
  border-radius: 15px;
  margin-bottom: 30px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  animation: fadeInUp 0.5s ease;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.section-title {
  font-size: 1.8rem;
  color: #0066cc;
  margin-bottom: 25px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 15px;
  border-bottom: 3px solid #0066cc;
}

.section-icon {
  width: 45px;
  height: 45px;
  background: linear-gradient(135deg, #0066cc 0%, #004499 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.2rem;
}

.page-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 20px;
  margin-top: 25px;
}

.page-card {
  background: #f8f9fa;
  padding: 25px;
  border-radius: 12px;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  cursor: pointer;
  position: relative;
}

.page-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 102, 204, 0.15);
  border-color: #0066cc;
  background: white;
}

.page-card.hidden {
  display: none;
}

.page-title {
  font-size: 1.2rem;
  color: #333;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
}

.page-title i {
  color: #0066cc;
  font-size: 1.3rem;
}

.page-link {
  color: #0066cc;
  text-decoration: none;
  font-size: 0.9rem;
  word-break: break-all;
  display: block;
  margin-bottom: 10px;
  font-family: "Courier New", monospace;
}

.page-link:hover {
  text-decoration: underline;
}

.page-description {
  color: #666;
  font-size: 0.95rem;
  line-height: 1.6;
}

.no-results {
  text-align: center;
  padding: 80px 20px;
  display: none;
  background: white;
  border-radius: 15px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.no-results.show {
  display: block;
}

.no-results i {
  font-size: 4rem;
  color: #e0e0e0;
  margin-bottom: 20px;
}

.no-results h3 {
  color: #666;
  margin-bottom: 10px;
  font-size: 1.5rem;
}

.no-results p {
  color: #999;
}

.stats-section {
  background: white;
  padding: 40px;
  border-radius: 15px;
  margin-bottom: 30px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  text-align: center;
}

.stat-item {
  padding: 20px;
  background: linear-gradient(135deg, #0066cc 0%, #004499 100%);
  border-radius: 12px;
  color: white;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 8px;
  color: white;
}

.stat-label {
  font-size: 0.95rem;
  opacity: 0.95;
  color: white;
}

@media (max-width: 768px) {
  .sitemap-hero h1 {
    font-size: 1.8rem;
    flex-direction: column;
  }

  .sitemap-hero {
    padding: 40px 20px;
  }

  .page-grid {
    grid-template-columns: 1fr;
  }

  .sitemap-section {
    padding: 20px;
  }

  .stats-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* Spacing for navbar */
.sitemap-wrapper {
  padding-top: 20px;
}
