.footer {
  width: 100%;
  border-top: 1px solid #ccc;
  background-color: rgba(5, 32, 62, 0.85);
  color: #ccc;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.8rem 2rem;
  font-size: 0.9rem;
  flex-wrap: wrap;
}

.footer .center {
  text-align: center;
  flex: 1;
}

@media (max-width: 768px) {
  .footer {
    flex-direction: column;
    text-align: center;
    gap: 0.8rem;
    padding: 1.2rem;
  }
  .footer .center {
    order: 3;
    margin-top: 0.5rem;
  }
}
