body {
  margin: 0;
  font-family: Arial, sans-serif;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}
.banner {
  /* background-color: #2b3a42; */
  color: white;
  padding: 1em;
  text-align: center;
}
.page-layout {
  display: flex;
  flex: 1;
  flex-direction: row;
}
.sidebar {
  width: 220px;
  /* background-color: #f4f4f4; */
  padding: 1em;
  border-right: 1px solid #ccc;
}
.sidetext {
  font-family: verdana;
  font-size: 12px;
}
.sidebar ul {
  list-style: none;
  padding: 0;
}
.sidebar li {
  margin-bottom: 1em;
}
.sidebar a {
  text-decoration: none;
  color: #333;
}
.sidebar a:hover {
  text-decoration: underline;
}
.content {
  flex: 1;
  padding: 2em;
}
.hanging-indent {
  padding-left: 2em; /* Indents all lines after the first */
  text-indent: -2em; /* Moves the first line back to the left */
}

/* Responsive layout for small screens */
@media (max-width: 768px) {
  .page-layout {
    flex-direction: column;
  }

.sidebar {
    width: 100%;
    border-right: none;
    border-bottom: 1px solid #ccc;
  }
}

