* { box-sizing: border-box; }
body { margin: 0; font-family: "Manrope", Arial, Helvetica, sans-serif; }

.footer {
  background: #000;
  color: #fff;
  padding: 40px 24px 0;
}

.footer-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.footer-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  opacity: 0.9;
  transition: opacity 0.2s ease;
}

.footer img {
  height: 36px;
  width: auto;
}

.footer-logo:hover {
  opacity: 1;
}

.footer-links {
  list-style: none;
  display: flex;
  gap: 32px;
  margin: 0;
  padding: 0;
}

.footer-links a {
  color: #fff;
  text-decoration: none;
  font-size: 15px;
  opacity: 0.75;
  transition: opacity 0.2s ease;
}

.footer-links a:hover {
  opacity: 1;
}

.footer-bottom {
  padding: 16px 0;
  text-align: center;
}

.footer-bottom p {
  margin: 0;
  font-size: 13px;
  opacity: 0.5;
}

@media (max-width: 600px) {
  .footer-main {
    flex-direction: column;
    gap: 24px;
    align-items: flex-start;
  }

  .footer-links {
    flex-wrap: wrap;
    gap: 16px 24px;
  }
}
