    /* Make body full height */
html, body {
  height: 100%;
  margin: 0;
  color: white;
}
/* Flex container to push footer down */
#page-container {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
/* Main content grows to take available space */
#content {
  flex: 1;
}
/* Footer styling */
  footer {
    background: #1b4332;
    color: #fff;
    text-align: center;
    padding: 10px;
    font-size: 0.9rem;
    margin-top: auto;
  }
  footer a {
    color: #b7e4c7;
    text-decoration: none;
    font-weight: 500;
  }
  footer a:hover {
    color: #d8f3dc;
    text-decoration: underline;
  }