/* Footer Styles */
.footer {
  background: #ffffff;
  border-top: 1px solid #e0e0e0;
  padding: 2rem;
  margin-top: auto;
}

.footer-copyright {
  text-align: center;
  margin-bottom: 1rem;
}

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

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

.footer-links small {
  color: #6c757d;
  font-size: 0.875rem;
}

.footer-links a {
  color: #6c757d;
  text-decoration: none;
  transition: color 0.3s ease;
}

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

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

/* Responsive Footer */
@media (max-width: 768px) {
  .footer {
    padding: 1.5rem 0;
  }
  
  .footer-links {
    flex-direction: column;
    gap: 0.5rem;
  }
  
  .footer-links__separator {
    display: none;
  }
}

