.elementor-7584 .elementor-element.elementor-element-e747c65{--display:flex;}/* Start custom CSS for html, class: .elementor-element-61e330c */.sitemap-container {
  font-family: 'Arial', sans-serif;
  max-width: 900px;
  margin: 0 auto;
  padding: 30px;
  background: #f9f9f9; /* Light gray background for better contrast */
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.sitemap-title {
  text-align: center;
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 30px;
  color: #2c3e50;
  position: relative;
}

.sitemap-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background: #0073e6;
  margin: 10px auto 0;
  border-radius: 2px;
}

.sitemap-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sitemap-list > li {
  margin-bottom: 20px;
  padding: 15px;
  background: #ffffff; /* White background for main items */
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}

.sitemap-list > li:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.sitemap-list > li > a {
  text-decoration: none;
  color: #0073e6; /* Blue font for main links */
  font-size: 1.1rem;
  font-weight: 600; /* Bold for main links */
  transition: all 0.2s ease-in-out;
}

.sitemap-list > li > a:hover {
  color: #005bb5; /* Darker blue on hover */
  text-decoration: underline;
}

.sitemap-list ul {
  padding-left: 25px;
  margin-top: 10px;
  border-left: 2px solid #0073e6;
}

.sitemap-list ul li {
  margin-bottom: 10px;
  padding: 8px;
  background: #f9f9f9; /* Light gray background for nested items */
  border-radius: 6px;
  transition: background 0.2s ease-in-out;
}

.sitemap-list ul li:hover {
  background: #e0f2ff; /* Light blue hover for nested items */
}

.sitemap-list ul li a {
  color: #0073e6; /* Ensure nested links are blue */
  font-size: 1rem; /* Slightly smaller font for nested links */
  font-weight: 500; /* Normal weight for nested links */
}

@media (max-width: 768px) {
  .sitemap-container {
    padding: 20px;
  }
  .sitemap-title {
    font-size: 1.8rem;
  }
  .sitemap-list > li > a {
    font-size: 1rem;
  }
  .sitemap-list ul li a {
    font-size: 0.95rem;
  }
  .sitemap-list > li {
    padding: 10px;
  }
}/* End custom CSS */