.footer {
  background-color: #fff;
  flex-shrink: 0;
  padding: 36px 30px;
  display: flex;
  justify-content: space-between;
}

.footer-left,
.footer-right {
  display: flex;
  flex-direction: column;
  width: 45%;
}

.footer-right {
  align-items: end;
}

.footer-copy {
  margin-bottom: 28px;
}

.footer-text {
  opacity: 0.5;
}

.footer-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 24px;
  margin-bottom: 36px;
}

.footer-list a {
  color: var(--text-color);
  font-size: 20px;
  line-height: 24px;
  text-decoration: none;
  text-underline-offset: 5px;
  transition: all 0.3s ease;
}

.footer-list a:hover {
  color: var( --primary-color);
  text-decoration: underline;
}