.ctls-footer {
  background: #fafafa;
  color: #333;
  font-size: 15px;
  line-height: 1.6;
  padding: 3em 2em;
}

.footer-container {
  max-width: 1280px;
  margin: 0 auto;
}

/* Obere Reihe */
.footer-top {
  display: grid;
  grid-template-columns: repeat(5, 1fr); /* ✅ jetzt 5 Spalten */
  gap: 2rem;
  margin-bottom: 2em;
}

.footer-col h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 0.8em;
  color: #000;
}

.footer-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.footer-col ul li { margin: 0.3em 0; }
.footer-col ul li a {
  color: #333;
  text-decoration: none;
}
.footer-col ul li a:hover { color: #d00000; }

/* Kontakt Icons */
.footer-col p {
  margin: 0.4em 0;
  display: flex;
  align-items: center;
  gap: 0.5em;
}
.footer-icon { font-size: 16px; }

/* Auszeichnungen */
.footer-awards {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 1.5em;
}

.footer-awards img {
  max-height: 230px;
  object-fit: contain;
  transition: transform 0.3s ease, opacity 0.3s ease;
  position: relative;
  z-index: 1;
}

/* Erstes Award-Bild: nach links unten skalieren */
.footer-awards img:first-child:hover {
  transform: scale(2.05);
  z-index: 10;
}

/* Zweites Award-Bild: nach rechts unten skalieren */
.footer-awards img:last-child:hover {
  transform: scale(2.05);

  z-index: 10;
}

/* Responsive */
@media (max-width: 768px) {
  .footer-awards {
    flex-direction: column;
    align-items: center;
  }
}

/* Untere Reihe */
.footer-bottom {
  border-top: 1px solid #ddd;
  padding-top: 1.5em;
  text-align: center;
}

.footer-partner {
display: flex;
justify-content: center;
gap: 4em;
margin-bottom: 2em;
margin-top: 2em;
}
.footer-partner img {
  max-height: 60px;
  object-fit: contain;
}

.footer-social {
  display: flex;
  justify-content: center;
  gap: 1.5em;
  margin-bottom: 0.5em;
}
.footer-social a {
  color: #333;
  font-size: 14px;
  text-decoration: none;
}
.footer-social a:hover { color: #d00000; }

.footer-legal {
  font-size: 13px;
  color: #666;
}
.footer-legal a { color: #333; text-decoration: none; }
.footer-legal a:hover { text-decoration: underline; }

/* Responsive */
@media (max-width: 992px) {
  .footer-top {
    grid-template-columns: 1fr 1fr;
  }
  .footer-awards {
    flex-direction: row;
    justify-content: flex-start;
  }
}
@media (max-width: 600px) {
  .footer-top {
    grid-template-columns: 1fr;
  }
  .footer-awards {
    justify-content: center;
  }
}