/* Footer Styling */
.site-footer {
  background-color: #1a1a1a;
  color: #fff;
  padding: 3rem 0;
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.footer-logo {
  margin-bottom: 2rem;
}

.footer-logo img {
  height: 40px;
  width: auto;
}

.footer-legal {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
}

.footer-links {
  margin-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  transition: color 0.3s ease;
  font-size: 0.9rem;
  position: relative;
}

.footer-links a:hover {
  color: #fff;
  text-decoration: underline;
}

/* Responsive footer */
@media (max-width: 768px) {
  .site-footer {
    padding: 2rem 0;
  }
  
  .footer-links {
    flex-direction: column;
    gap: 1rem;
  }
}
