footer {
  font-family: 'Montserrat Alternates', sans-serif;
  font-size: 14px;
  margin-top:50px;
}

/* Base styles for footer */
footer {
  background-color: #EEEEEE;
  padding: 20px;
  text-align: center;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 900px;
  margin: 0 auto;
}

.footer-column {
  flex-basis: 30%;
  margin-bottom: 20px;
}

.footer h3 {
  color: #333;
  font-size: 18px;
  margin-bottom: 10px;
}

.footer p {
  color: #666;
}

.footer ul {
  list-style: none;
  padding: 0;
}

.footer ul li {
  margin-bottom: 5px;
}

.footer a {
  color: #666;
  text-decoration: none;
}

.footer a:hover {
  text-decoration: underline; /* optional hover effect */
}

/* Responsive styles for footer */
@media screen and (max-width: 768px) {
  .footer-column {
    flex-basis: 100%;
    text-align: center;
  }
}


