/* Footer */
.footer {
  background: #000;
  padding: 20px 0;
  color: white;
}

.footer-content {
  display: flex;
  justify-content: center;
  align-items: center;
}

.footer-copyright {
  font-size: 14px;
  opacity: 0.9;
  margin: 0;
  text-align: center;
}

@media (max-width: 768px) {
  .footer {
    padding: 16px 0;
  }

  .footer-content {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }

  .footer-copyright {
    font-size: 12px;
  }
}
