.container {
  display: flex;
  flex-direction: column;
  margin: 0;
  padding: 0;
  width: 100%;
}

.site-footer {
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  padding: 2rem 2rem 2rem;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  position: relative;
  margin-top: auto;
}

.footer-columns {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto 1rem;
}

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

.footer-column h3 {
  color: #08C044;
  margin-bottom: 1.5rem;
  font-size: 1.3rem;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.footer-column p {
  margin: 0.8rem 0;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.2;
}

.footer-column a {
  margin: 0.8rem 0;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.2;
  text-decoration: none;
}

.site-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, #08C044, #00D084, #08C044);
}

/* Footer unterer Text */
.footer-note {
  text-align: center;
  padding: 1rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  z-index: 1;
}

.footer-note p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  line-height: 1.6;
  margin: 0.5rem 0;
}

.footer-note p:last-child {
  font-weight: 600;
  color: #08C044;
  margin-top: 1rem;
}