@charset "utf-8";
/* CSS Document */

/* =========================================================
   DIVER ON TOUR – FOOTER INFO
   Datei: /assets/css/footer-info.css
   Für Impressum / Kontakt / Geschäftsführung
========================================================= */

.footer-info{
  background:#ffffff;
  color:#333333;
  padding:40px 20px;
  font-size:15px;
  line-height:1.7;
  max-width:1200px;
  margin:0 auto;
  box-sizing:border-box;
}

.footer-info hr{
  border:0;
  border-top:1px solid rgba(0,0,0,0.10);
  margin:25px 0;
}

.footer-info-container{
  display:flex;
  justify-content:space-between;
  gap:30px;
  flex-wrap:wrap;
}

.footer-info .info-block{
  flex:1 1 30%;
  box-sizing:border-box;
  min-width:260px;
}

.footer-info .info-block strong{
  display:block;
  margin-bottom:10px;
  color:#006494;
  font-size:16px;
  font-weight:700;
  line-height:1.4;
}

.footer-info a{
  color:#006494;
  text-decoration:none;
  font-weight:500;
  transition:color 0.2s ease, text-decoration 0.2s ease;
}

.footer-info a:hover,
.footer-info a:focus{
  color:#0e3a5a;
  text-decoration:underline;
}

@media (max-width:768px){
  .footer-info{
    padding:30px 15px;
  }

  .footer-info-container{
    flex-direction:column;
    gap:20px;
  }

  .footer-info .info-block{
    flex:1 1 100%;
    max-width:100%;
    min-width:0;
  }

  .footer-info hr{
    margin:20px 0;
  }
}