footer {
  background-color: var(--color-lilly-red) !important;
}

.footer-container {
  color: #fff;
}

.footer-main {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  font: var(--lds-g-typography-ringside-body-medium);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 15px;
  list-style: none;
  padding: 0;
}

.footer-links li {
  display: inline;
}

.footer-links a {
  text-decoration: none;
  color: inherit;
}

.footer-main .logo {
  display: inline-block;
  margin: calc(75px / 2);
}

.footer-main img {
  height: 75px;
  display: block;
}

.footer-pp-number {
  width: 100%;
  text-align: left;
  margin-top: 2rem;
  padding-bottom: 4.8rem;
}

.pp-number {
  display: block;
  margin: 0;
  text-align: center;
  font: var(--lds-g-typography-ringside-body-medium);
}


@media (min-width: 1024px) {
  .footer-main {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .footer-links {
    flex-direction: row;
    margin-block: 0;
  }

  .footer-main img {
    align-self: center;
  }

  .pp-number {
    text-align: right;
  }
}