.footer-contact {
  position: relative;
  width: 100%;
  overflow: hidden;
  text-align: center;
  color: #fff;
}

.footer-image {
  width: 100%;
  height: auto;
  display: block;
}

.footer-inner {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 700px;
  width: 90%;
  z-index: 2;
}


.footer-inner h2  {
    text-align: center;
    padding-top: 30px;
    padding-bottom: 10px;
}

.footer-inner p  {
    text-align: center;
    margin-bottom: 30px;
    max-width: 90vw;
}

.footer-button {
  background-color: #83C0E5;
  color: white;
  font-weight: bold;
  font-size: 15px;
  padding: 8px 16px;
  border-radius: 999px;
  text-decoration: none;
  display: inline-block;
  transition: 0.3s ease;
}

.footer-button:hover {
  padding: 8px 20px;
}

@media (max-width: 800px) {

  .footer-button {
    font-size: 13px;
   }

  .footer-inner h2 {
  padding-bottom: 8px;
  padding-top: 10px;
  }

  .footer-inner p {
    margin-bottom: 20px;
  }
}

@media (max-width: 515px) {
  .footer-image {
    height: 300px; /* Höhe anpassen für kleinere Screens */
    width: 100%; /* Breite anpassen */
  }
}





.cta-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #83C0E5;
  color: white;
  flex-wrap: wrap; /* sorgt für Umbruch bei kleinen Screens */
  gap: 10px;
  padding: 50px 50px 8px 50px;
  margin-top: -50px; /* <- schiebt die Box nach oben */
}

.cta-bottom a {
    font-size: 15px;
    font-weight: 300;
}

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

@media (max-width: 800px) {
  .footer-links a {
    font-size: 11px;
  }

  .footer-links{
    font-size: 11px;
  }

  .cta-bottom{
    padding: 50px 20px 8px 20px;
  }
}

.footer-links a {
  color: white;
  text-decoration: none;
}

.footer-links a:hover {
  text-decoration: underline;
}

@media (max-width: 380px) {
  .cta-bottom {
    flex-direction: column; /* Links untereinander anordnen */
    align-items: center; /* Zentriert die Links */
  }
}