/* Basic layout structure */
html,
body {
  height: 100%;
  margin: 0;
  font-family: Arial, sans-serif;
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

/* Make main content area expand to push footer down */
main {
  flex: 1 0 auto;
}

/* Header styling */
.navbar {
  padding: 1rem 0;
}

.imgWidth {
  width: 200px;
}

/* Upgrade notice section */
#wellness-update {
  background-color: #f8f9fa;
  padding: 4rem 1rem;
}

#wellness-update h1 {
  font-size: 2rem;
  font-weight: 500;
  color: #000;
}

#wellness-update ul {
  padding-left: 1.2rem;
}

.buttonBackground {
  color: #fff;
  background-color: #293574;
  border-radius: 5px;
  border: none;
  padding: 10px 25px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  cursor: pointer;
  transition: background-color 0.3s ease-in-out;
}

.buttonBackground:hover {
  background-color: #0878bd;
  color: #fff;
  text-decoration: none;
}

/* Footer with logo only */
.footer {
  background-image: url(/img/footer-blue.webp);
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  padding: 2rem 1rem;
  color: white;
}

.pamWellbeingLogo {
  display: inline-block;
}

.blue-text {
  color: #0878bd;
  font-weight: 600;
}

/* Responsive tweaks */
@media (max-width: 768px) {
  .pamWellbeingLogo {
    display: block;
    text-align: center;
    margin-bottom: 1rem;
  }
}
