.footer {
  margin-top: 12rem;
  background-color: #00e600;
  color: #111;
  padding: 4rem 6rem;
  font-family: 'Work Sans', sans-serif;
}

.footer h2 {
  margin-bottom: 4rem;
}

.footer-columns {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 4rem;
}

.footer-columns ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 20px;
  flex-direction: column;
}

.footer-columns ul li,
.footer-address p {
  font-size: 15px;
  font-weight: 400;
  margin: 0.3rem 0;
}

.footer-columns a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-columns a:hover {
  color: #ff00b7;
}

.links-container {
  display: flex;
  gap: 8rem;
}

.footer-address {
  height: 100%;
  align-self: end;
  text-align: right;
}

@media (max-width: 768px) {
  .footer-columns,
  .links-container,
  .footer-columns ul {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
  }

  .footer {
    padding: 1rem 2rem;
  }

  .footer-address {
    text-align: left;
    margin-top: 4rem;
  }
}
