.site-footer {
  background-color: #1f2937;
  color: #d1d5db;
  padding: 2rem 1rem;
  margin-top: auto;
  font-size: 0.95rem;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
  align-items: center;
}

.footer-left {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-logo {
  width: 50px;
  height: 50px;
  object-fit: contain;
}

.footer-links {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.footer-links a,
.site-footer a {
  color: #93c5fd;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-links a:hover,
.site-footer a:hover {
  color: #60a5fa;
}

.site-name {
  font-weight: 600;
}

@media (max-width: 600px) {
  .footer-container {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-left {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-links {
    margin-top: 1rem;
  }
}
