:root {
  --text-dark: #1E293B;
  --text-body: #475569;
  --font: 'Manrope', sans-serif;
}

.footer {
  padding: 40px;
  border-top: 1px solid #e2e8f0;
  margin-top: 40px;
  font-family: var(--font);
}

.footer-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
}

.footer .logo img {
  height: 42px;
}

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

.footer-links a {
  font-size: 15px;
  font-weight: 500;
  color: var(--text-body);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--text-dark);
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(0, 0, 0, 0.05);
}

.footer-social svg {
  width: 18px;
  height: 18px;
  fill: var(--text-dark);
}

.footer-bottom {
  text-align: center;
  margin-top: 24px;
  font-size: 14px;
  color: var(--text-body);
}

@media (max-width: 768px) {
  .footer-content {
    flex-direction: column;
    gap: 24px;
    text-align: center;
  }

  .footer-links {
    flex-wrap: wrap;
    justify-content: center;
  }
}
