body {
    font-family: Arial, Helvetica, sans-serif;
    margin: 0px;
    padding-top: 100px;
    display: flex;
    flex-direction: column;
    font-size: 14px;
    padding-left: 40px;
}

.container {
    display: flex;
    align-items: flex-start;
    height: 100vh;
}

.sidebar {
    display: flex;
    font-size: 14px;
    background: #ffffff;
    flex-direction: column;
    min-height: 100vh;
    padding-right: 60px;
}

.sidebar ul {
    list-style: none;
}

.sidebar ul li {
    margin-bottom: 20px;           /* Space between words in the sidebar */
}

.sidebar ul li a {
    color: rgb(0, 0, 0);
    text-decoration: none;
    display: block;
}

.sidebar ul li a:hover {
    color: hsl(221, 100%, 21%); /* Color when hovering over an item in the sidebar */
}

.sidebar ul li a.active {
    color: hsl(221, 100%, 21%); /* Color when of the selected item in the sidebar */
}

.main-content {
    flex: 1;               /* takes remaining space */
    overflow-y: auto;      /* scroll if content too tall */
    padding-top: 12px;
}

header {
    padding-left: 20px;
}

p {
    margin: 0;
    padding: 0;
    line-height: 1.5;
}

p.spaced {
  margin-top: 1.5em; /* bigger space before this paragraph */
}

.text-box {
    width: 100%;              /* Responsive width */
    max-width: 600px;         /* Fixed column max width */
}

.columns {
  display: flex;
  flex: 1;
  gap: 20px; /* space between columns */
  padding-left: 40px;
}

.column {
  flex: 1; /* makes both columns equal width */
  background-color: #ffffff;
  border-radius: 5px;
}

.image-with-info {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  flex-wrap: wrap; /* stack on small screens */
  padding-bottom: 20px;
  padding-left: 40px;
}

.image-side {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 300px;
  text-align: center;
}

.image-title {
  margin-bottom: 10px;
  font-size: 1.2rem;
}

.image-side img {
  max-width: 100%;
  height: auto;
}

.image-caption {
  margin-top: 10px;
  font-size: 0.9rem;
  color: #666;
}

.image-text-box {
  flex: 1;
  min-width: 250px;
  padding: 10px;
  background-color: #f9f9f9;
  box-shadow: 0 0 8px rgba(0,0,0,0.05);
}