.footer {
  border-top: 1px solid var(--border);
  padding: 24px 0;
  color: #a1a1aa;
  font-size: 13px;
  width: 100%;
}

.footer .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
}

.footer-left {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-logo {
  width: 80px;
  height: auto;
  border-radius: 8px;
}

.footer-right {
  margin-top: 6px;
}

.footer-link {
  color: #9ca3af;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-link:hover {
  color: #fff;
}

/* Responsive Anpassung für größere Bildschirme */
@media (min-width: 640px) {
  .footer .container {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
  
  .footer-right {
    margin-top: 0;
  }
}