.footer {
    background-color: #fafdff;
    margin-top: 40px;
    margin-bottom: 0;
    padding: 20px 0; 
    width: 100%;
    position: relative;
    bottom: 0;
  }
  
  
  body {
    display: flex;
    flex-direction: column;
  }
  
  
  #footer-logo {
    height: auto;
    margin-bottom: 5%;
  }
  

  
  .contactFooter {
    display: flex;
    gap: 5px; 
    color: #0d3f74 !important;
    white-space: nowrap; 
    margin-bottom: 5px;
  }
  .contactFooter_link{
    color: #0d3f74 !important;
    text-decoration: none; 

  }
  
  .contactFooter i {
    font-size: 18px;
  }
  #footer-map{
    border-radius: 10px;
    height: 227px;
  }
  
  
  /* From Uiverse.io by wilsondesouza */ 
  ul {
    list-style: none;
  }
  
.example-2 {
  display: flex; /* Flexbox düzeni */
  justify-content: center; /* Yatayda ortalama */
  align-items: center; /* Dikeyde ortalama */
  flex-direction: column; /* Başlangıçta dikey yerleşim */
  
}

/* Her butonun container'ı */
.example-2 .icon-content {
  margin: 1.3rem 0.5rem;
  position: relative;
}

/* Tooltip stilleri */
.example-2 .icon-content .tooltip {
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
  color: #fff;
  padding: 6px 10px;
  border-radius: 5px;
  opacity: 0;
  visibility: hidden;
  font-size: 14px;
  transition: all 0.3s ease;
}

.example-2 .icon-content:hover .tooltip {
  opacity: 1;
  visibility: visible;
  top: -50px;
}

/* Buton stilleri */
.example-2 .icon-content a {
  position: relative;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  color: #4d4d4d;
  background-color: #fff;
  transition: all 0.3s ease-in-out;
}

.example-2 .icon-content a:hover {
  box-shadow: 3px 2px 45px 0px rgb(0 0 0 / 12%);
}

.example-2 .icon-content a svg {
  position: relative;
  z-index: 1;
  width: 30px;
  height: 30px;
}

.example-2 .icon-content a:hover {
  color: white;
}

.example-2 .icon-content a .filled {
  position: absolute;
  top: auto;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0;
  background-color: #000;
  transition: all 0.3s ease-in-out;
}

.example-2 .icon-content a:hover .filled {
  height: 100%;
}

/* WhatsApp butonunun stilleri */
.example-2 .icon-content a[data-social="whatsapp"] .filled,
.example-2 .icon-content a[data-social="whatsapp"] ~ .tooltip {
  background-color: #128c7e;
}

/* Instagram butonunun stilleri */
.example-2 .icon-content a[data-social="instagram"] .filled,
.example-2 .icon-content a[data-social="instagram"] ~ .tooltip {
  background: linear-gradient(
    45deg,
    #405de6,
    #5b51db,
    #b33ab4,
    #c135b4,
    #e1306c,
    #fd1f1f
  );
}

/* Ekran küçüldüğünde ikonlar yan yana gelir */
@media (max-width: 768px) {
  .example-2 {
    flex-direction: row;
    margin-top: 20px;
  }
}

.copyright {
  color: #0d3f74;
  margin: 2.4em 0 0;
  padding: 1.2em 0 0;
  background-color: #fafdff;
  text-align: center;
  border-top: 1px solid #ff6823;
}
