.footer {
  background-color: var(--purple);
  color: var(--white);
  padding: 1.5rem 1rem;
}

.footer__container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.footer__about {
  flex: 1;
  max-width: 300px;
}

.footer__company-name {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.footer__description {
  font-size: 0.875rem;
  color: var(--white-hover);
}

.footer__columns {
  display: flex;
  gap: 2rem;
  justify-content: flex-end;
}

.footer__column {
  text-align: center;
}

.footer__column-title {
  font-size: 1rem;
  margin-bottom: 0.5rem;
  font-weight: bold;
}

.footer__list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer__link {
  color: var(--white);
  text-decoration: none;
  font-size: 0.875rem;
  margin-bottom: 0.25rem;
  display: inline-block;
}

.footer__link:hover {
  color: var(--white-hover);
}

.footer__legal {
  margin-top: 1rem;
  border-top: 1px solid var(--green-hover);
  padding-top: 1rem;
  text-align: center;
  font-size: 0.75rem;
  display: flex;
  justify-content: center;
  gap: 1rem;
}

.footer__legal-link {
  color: var(--white);
  text-decoration: none;
}

.footer__legal-link:hover {
  color: var(--white-hover);
}

@media (max-width: 768px) {
  .footer__container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer__columns {
    justify-content: center;
    flex-direction: column;
    align-items: center;
  }

  .footer__legal {
    flex-direction: column;
    gap: 0.5rem;
  }
}
