/* Footer */
.site-footer {
  padding: 2rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  background: rgba(0, 0, 0, 0.3);
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}

.footer-links {
  display: flex;
  gap: 1.5rem;
}

.footer-links a {
  text-decoration: none;
  color: #d4cfff;
  font-size: 0.9rem;
}

.muted {
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
}

.brands-image {
  max-height: 60px;
  width: auto;
  height: auto;
  object-fit: contain;
  opacity: 0.9;
}

@media (max-width: 768px) {
  .footer-content {
    flex-direction: column;
    text-align: center;
  }
  
  .brands-image {
    max-height: 50px;
  }
}

