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

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

.footer-copyright small {
  color: #374151; /* Darker grey for better readability - meets WCAG AA */
  font-size: 0.875rem;
}


.footer-links small {
  color: #374151; /* Darker grey for better readability - meets WCAG AA */
  font-size: 0.875rem;
}

.footer-links a {
  color: #374151; /* Darker grey for better readability - meets WCAG AA */
  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;
  }
}

