<style>
    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }
    /* Ensure the html and body span full height */
    html, body {
    height: 100%;
    margin: 0;
    padding: 0;
    }

    body {
      font-family: Arial, sans-serif;
      display: flex;
      flex-direction: column;
      align-items: center;
    }
    /* Header Sections */
    .header-container {
      display: flex;
      flex-direction: column;
      gap: 10px;
      margin-top: 20px;
    }
    .header-box {
    width: 80vw;
    min-height: 120px; /* Ensures a minimum height */
    background-color: #FFF
    color: white;
    display: flex;
    align-items: left;
    justify-content: left;
    font-size: 24px;
    padding: 10px; /* Adds internal spacing */
    text-align: left;
    flex-wrap: wrap; /* Ensures content wraps inside */
  }

    /* Grid Container for Boxes */
    .grid-container {
      width: 80vw;
      margin-top: 50px; /* 50px buffer below headers */
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 20px; /* Space between boxes */
      justify-items: center;
    }
    /* Grid Boxes */
/* Updated .box styling: removed fixed height and added vertical stacking */
.box {
  background-color: white;
  color: black;
  /* REMOVED the solid border */
  box-shadow: 10px 10px 10px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
  align-items: center;
  /*padding: 10px;  overall inside margin */
  padding-bottom: 10px;
  width: 100%; /* CHANGED: ensures the box always fills the grid cell */
}

.box img {
  width: 100%; /* CHANGED: image now spans 100% of the box's width */
  height: auto;
  object-fit: contain;
  margin-bottom: 10px; /* maintains 10px gap below the image */
}

/* Added new styling for the text region below the image */
.box-text {
  margin-top: auto; /* CHANGED: pushes text to the bottom */
  color: black;
  font-size: 0.9em;
  text-align: center;
  width: 100%;
}

/* Make the main content area grow to push the footer to the bottom */
.main-content {
  flex: 1;
}
.footer {
  width: 90%;
  background-color: #EEEEEE;
  color: black;
  font-size: 0.8em;
  text-align: center;
  padding: 10px;
  margin-top: 40px; /* 40px white space above the footer */
}

/* Add white space below the footer */
body::after {
  content: "";
  display: block;
  height: 40px; /* This creates 40px of actual blank space below the footer */
}

  </style>