@charset "utf-8";
/* CSS Document */

@charset "utf-8";
/* CSS Document */

/* =========================================================
   DIVER ON TOUR – FOOTER INFO
   Datei: /assets/css/footer-info.css
   Bereich:
   - Impressum
   - Kontakt
   - Geschäftsführung
========================================================= */

.footer-info{
  max-width:1200px;
  margin:0 auto;
  padding:40px 20px;
  box-sizing:border-box;
  background:#ffffff;
  color:#333333;
  font-family:Arial, sans-serif;
  font-size:0.95rem;
  line-height:1.7;
}

.footer-info hr{
  margin:25px 0;
  border:0;
  border-top:1px solid rgba(0,0,0,0.10);
}

.footer-info-container{
  display:flex;
  flex-wrap:wrap;
  justify-content:space-between;
  gap:30px;
}

.footer-info .info-block{
  flex:1 1 30%;
  min-width:260px;
  box-sizing:border-box;
}

.footer-info .info-block strong{
  display:block;
  margin-bottom:10px;
  color:#006494;
  font-size:1rem;
}

.footer-info a{
  color:#006494;
  text-decoration:none;
  font-weight:500;
}

.footer-info a:hover{
  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;
  }
}