/* Footer Styles */
.footer {
  background: #ffffff;
  border-top: 1px solid #e0e0e0;
  margin-top: auto;
  padding: 2rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
  width: 100%;
}

.footer-copyright {
  text-align: left;
}

.footer-copyright small {
  color: #6b7280;
  font-size: 0.875rem;
  font-weight: 400;
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.footer-links a {
  color: #6b7280;
  text-decoration: none;
  font-size: 0.875rem;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #000000;
}

.footer-links__separator {
  width: 1px;
  height: 1rem;
  background: #e5e7eb;
}

/* Responsive Footer */
@media (max-width: 768px) {
  .footer {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1.5rem 1rem;
    gap: 1rem;
  }

  .footer-copyright {
    text-align: center;
  }
}