footer {
  height: 120px;
  display: flex;
  font-size: 18px;
  color: #111827;
  border-top: 1px solid #e5e7eb;
  justify-content: center;
  padding: 20px;
}

footer .wrapper {
  display: flex;
  max-width: 1500px;
  width: 1500px;
  gap: 50px;
    justify-content: space-between;
}

.footer-right {
  display: flex;
  justify-content: center;
  align-items: center;
}

.footer-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.footer-left p {
  margin-bottom: 5px;
}

.footer-content-1 {
  font-size: 16px;
  color: #111827;
}

.footer-content-2 {
  font-size: 14px;
  color: #666;
}

@media (max-width: 1000px) {
  footer {
    height: auto;
  }

  footer .wrapper {
    flex-direction: column;
    gap: 20px;
  }
}
