.footer {
  background: #111827;
  color: white;
  padding: 20px 10px;
  margin-top: 50px;
  font-size: 0.9rem;
}

.footer-content {
  max-width: 1200px;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}

.footer-logo {
  font-size: 1.3rem;
  font-weight: bold;
}

.footer-links {
  list-style: none;
  display: flex;
  gap: 15px;
  padding: 0;
  margin: 10px 0;
}

.footer-links a {
  color: white;
  text-decoration: none;
}

.footer-links a:hover {
  color: #fbbf24;
}

.footer-socials a img {
  width: 20px;
  height: 20px;
  margin-left: 10px;
}

.footer-bottom {
  text-align: center;
  padding-top: 10px;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 0.8rem;
}

/* Responsive */
@media (max-width: 768px) {
  .footer-content {
    flex-direction: column;
    text-align: center;
  }
  .footer-links {
    flex-direction: column;
  }
}
