img.brand-logo {
  width: 50px;
}
.footer {
  background-color: white;
  padding: 40px 0;
  border-top: 2px solid #37d3ab;
  color: black;
  font-family: Arial, sans-serif;
  text-align: center;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
}

.footer .footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  max-width: 50%;
  margin: 0 auto;
}
.footer .footer-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  align-content: center;
}
.footer .footer-logo h2 {
  font-size: 28px;
  font-weight: bold;
  color: #37d3ab;
  margin-top: 0px;
  margin-bottom: 0px;
}
.footer .footer-logo img {
  margin-bottom: 0px;
}
.footer .footer-links ul {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
}

.footer .footer-links ul li {
  display: inline;
  margin: 0 15px;
  text-align: left;
}

.footer .footer-links ul li a {
  color: black;
  text-decoration: none;
  font-size: 16px;
  transition: color 0.3s ease;
}

.footer .footer-links ul li a:hover {
  color: #37d3ab;
}

.footer .footer-social a {
  color: black;
  margin: 0 10px;
  font-size: 24px;
  transition: color 0.3s ease;
}

.footer .footer-social a:hover {
  color: #37d3ab;
}

.footer .footer-info p {
  margin-top: 20px;
  font-size: 14px;
  color: black;
}
