.site-footer {
    background-color: #08415e;
    color: white;
    font-size: 14px;
  }

.footer-skyline {
  background-color: #f3ece6;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: -0.7px;
}

.footer-skyline img {
  width: 80vw;
  height: auto;
  display: block;
}
  
  .footer-content {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  padding: 40px 20px 0px 20px;
  background-color: #08415e;
  max-width: 60%;    /* NEU: Maximal 50% Breite */
  margin: 0 auto;    /* Zentriert */
}

  
  .footer-column h4 {
    font-size: 16px;
    margin-bottom: 10px;
  }
  
  .footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  .footer-column ul li {
    margin-bottom: 8px;
  }
  
  .footer-column a {
    color: white;
    text-decoration: none;
  }
  
  .footer-column a:hover {
    text-decoration: underline;
  }
  
 .partner-logos {
  display: flex;
  flex-direction: row; /* NEU: in eine Zeile */
  gap: 20px;
  align-items: center;
  margin-top: 10px;
}

.partner-logos img {
  max-width: 100px;
  padding: 10px;
  border-radius: 8px;
}

  
.footer-bottom {
  background-color: #2c6582;
  display: flex;
  justify-content: center; /* Hauptausrichtung: Mitte */
  align-items: center;
  position: relative; /* wichtig für Positionierung */
  padding: 10px 20px;
  font-size: 12px;
  color: #8bcbe7;
}

.footer-center {
  text-align: center;
}

.footer-right {
  position: absolute;
  right: 20px;
}

.back-to-top {
  color: #8bcbe7;
  text-decoration: none;
}

.back-to-top:hover {
  text-decoration: underline;
}



.social-media {
  margin-bottom: 10px;
  text-align: center;
  color: white;
  font-size: 14px;
}

.social-media-content {
  display: inline-flex;
  align-items: center;
  gap: 10px; /* Abstand zwischen Eule und Text */
}

.social-media-content img {
  width: 50px;
}

.social-media-content p {
  margin: 0; /* Kein zusätzlicher Abstand */
}

.social-icon {
  color: white;
  font-size: 20px;
  text-decoration: none;
  width: 20px;
}

.social-icon:hover {
  color: #cccccc;
}

@media (max-width: 825px) {
  .footer-content {
    grid-template-columns: repeat(2, 1fr); /* bleibt so */
    gap: 20px;
    padding: 20px;
    max-width: 100%; 
    margin-left: 40px;
  }


  .partner-logos {
    gap: 16px;
    flex-wrap: wrap;
    flex-direction: row;
  }

  .partner-logos img {
    max-width: 80px;
  }
  .footer-left{
    text-align: center;
  }
  .footer-right{
    display: none;
  }
}

@media (min-width: 2000px) {
  .footer-skyline img {
    width: 50vw;
  }
}



  