/* Global Reset Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Restore default styles for ul/ol elements */
ul, ol {
  margin: 0 0 1rem 0;
  padding-left: 2rem;
}

ul {
  list-style-type: disc;
}

ol {
  list-style-type: decimal;
}

li {
  margin-bottom: 0.25rem;
  line-height: 1.6;
}

/* Navigation menu specific resets */
.site-nav-menu {
  margin: 0;
  padding: 0;
  list-style: none;
}

/* Custom list classes for specific styling */
.content-list {
  margin-left: 1.5rem;
  margin-bottom: 1rem;
  list-style-type: disc;
  padding-left: 1rem;
}

.content-list-ordered {
  margin-left: 1.5rem;
  margin-bottom: 1rem;
  list-style-type: decimal;
  padding-left: 1rem;
}

.content-list-item {
  margin-bottom: 0.5rem;
  line-height: 1.6;
}

/* Default anchor styles */
a {
  text-decoration: none;
  color: inherit;
}