.footer {
  background-color: #0a0a0a;
  color: #ffffff;
  padding: 80px 60px 30px 60px;
  font-family: 'Inter', sans-serif;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
  gap: 40px;
}

.footer-brand .footer-logo {
  font-family: 'Plus Jakarta Sans';
  font-size: 28px;
  font-weight: 800;
  color: #ffffff;
  text-decoration: none;
  display: block;
  margin-bottom: 15px;
}

.footer-brand p {
  color: #888;
  line-height: 1.6;
}

.footer-links {
  display: flex;
  gap: 80px;
}

.footer-column h4 {
  font-family: 'Plus Jakarta Sans';
  font-size: 16px;
  margin-bottom: 20px;
  color: #00ff88; /* Dein Novalis-Grün als Akzent */
}

.footer-column a {
  display: block;
  color: #888;
  text-decoration: none;
  margin-bottom: 12px;
  transition: color 0.3s ease;
}

.footer-column a:hover {
  color: #ffffff;
}

.footer-bottom {
  margin-top: 60px;
  padding-top: 20px;
  border-top: 1px solid #222;
  text-align: center;
  font-size: 14px;
  color: #555;
}