/* Make sure the html and body take up full height */
html,
body {
  height: 100%;
  font-family: "Montserrat", sans-serif;
  margin: 0;
  box-sizing: border-box;
  overflow-x: hidden; /* Prevent horizontal scrolling */
}

/* Container to push footer to the bottom */
body {
  display: flex;
  flex-direction: column;
}

/* Content that grows with page content */
main {
  flex: 1;
}

/* Footer */
footer {
  background-color: #014bae;
  color: #fff;
  text-align: center;
  padding: 1rem;
  position: relative;
  box-shadow: 0 -2px 4px rgba(0, 0, 0, 0.1);
  width: 100%; /* Ensure footer spans full width */
  box-sizing: border-box; /* Include padding and borders in width calculation */
}

footer .social-media {
  margin-top: 1rem;
}

footer .social-media a {
  color: #fff;
  margin: 0 0.5rem;
  font-size: 1.5rem;
  transition: color 0.3s;
}

footer .social-media a:hover {
  color: #a0c4ff;
}

@media (max-width: 768px) {
  footer {
    padding: 1rem;
  }
}
