/* Common styling for the body */
body {
  font-family: 'Sans-serif', Helvetica;  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
  margin: 0;
  padding: 0;
}

/* Styling for the initial body background */
body {
  margin: 0.5in;
  /* 1/2 inch margin on all sides */
  padding: 0;
  /* No padding on the body */
}

/* Styling for the logo */
.logo {
  max-width: 100px;
  max-height: 100px;
  display: inline-block;
  margin-right: 20px;
}

/* Styling for the logo image */
.logo img {
  max-width: 100%;
  max-height: 100%;
  border: 2px solid white;
  /* White border around the logo image */
}

/* Styling for the content section */
.content {
  display: flex;
  justify-content: space-between;
  margin: 20px;
}

/* Styling for the regular columns */
.column,
.additional-column {
  width: 30%;
  padding: 10px;
  box-sizing: border-box;
  /* Include padding in the total width */
  border: 1px solid white;
  /* White border for columns */
}

/* Styling for images within the image column */
.image-column img {
  width: 100%;
  /* Set the image width to 100% */
  height: auto;
  display: block;
}

/* Styling for the footer */
.footer {
  font-size: 1.7em;
  text-align: center;
  margin-top: 20px;
  color: black;
  /* Set text color to black */
}

/* Styling for the navigation bar */
.navbar {
  text-align: center;
  padding: 5px 0;
  margin-left: -0.5in;
  /* Adjusted to match the overall margin */
  margin-right: -0.5in;
  /* Adjusted to match the overall margin */
}

/* Styling for navigation links in the navbar */
.navbar a {
  margin: 0 15px;
  text-decoration: none;
  color: white !important;
}

/* Styling for the active navigation link */
.navbar a.active {
  font-weight: bold;
}