* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* body style */
body {
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #f4f4f4;
  padding: 20px;
}
.container {
  max-width: 1200px;
  margin: 0 auto;
  background-color: #fff;
  padding: 20px;
  border-radius: 5px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

header {
  text-align: center;
  padding-bottom: 20px;
  margin-bottom: 30px;
  border-bottom: 1px solid #ddd;
}

header h1 {
  color: #444;
  margin-bottom: 10px;
}

header p {
  color: #777;
}

.sitemap-container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.sitemap-section {
  flex: 1 1 300px;
  margin-bottom: 30px;
}

.sitemap-section h2 {
  font-size: 18px;
  color: #4b70e2;
  margin-bottom: 15px;
  padding-bottom: 5px;
  border-bottom: 1px solid #eee;
}

/* Lists design */
ul {
  list-style-type: none;
}


.sitemap-section > ul > li > ul > li:before {
  content: "- ";
  color: #999;
}

/* link design */
a {
  color: #555;
  text-decoration: none;
}

a:hover {
  color: #4b70e2;
  text-decoration: underline;
}

/* Footer design*/
footer {
  text-align: center;
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid #ddd;
  color: #777;
  font-size: 14px;
}

/* Responsive Design for other device */
@media (max-width: 768px) {
  .sitemap-container {
      flex-direction: column;
  }
  
  .sitemap-section {
      flex: 1 1 100%;
  }
}