:root {
  --secondary: #00334e;
}
/* Footer listesi için genel stil */
      .footer-list {
        padding: 1vh;
        line-height: 2;
        width: 100%;
      }

      .footer-link{
        color: var(--secondary) !important;
      }

      /* Footer link kısmı için düzenleme */
      .footer-link {
        display: block;
        padding: 6px 10px;
        border-radius: 6px;
        transition: all 0.2s ease-in-out;
        text-decoration: underline; /* Normalde altı çizili */
      }

      /* Logo bölümü için düzenleme */
      .logo-section {
        text-align: left;
        align-items: flex-start;
      }

      .main-logo {
        width: 200px;
        margin-bottom: 20px;
      }

      /* Tüm bölümler için tutarlı hizalama */
      .footer-section {
        text-align: right;
        margin-top: 10px;
      }

      /* Liste elemanlarının hizalaması */
      .footer-section .list-group-item {
        text-align: center;
        padding-left: 0;
        margin-bottom: 3px;
        font-size: 15px;
      }

      /* Google Partner logosu için pozisyon ayarı */
      .google-partner {
        position: absolute;
        top: 310px;
        left: 20px;
      }

      /*Copyright font ayarı*/
      #copyright {
        font-size: small;
      }

      .app-logo-container {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        height: 50px;
        background-color: transparent;
        overflow: hidden;
        padding: 4px;
        box-sizing: border-box;
        border-radius: 6px;
      }
      .app-logo {
        height: 100%;
        width: auto;
        object-fit: contain;
        display: block;
      }

     .app-logos {
  display: flex;
  align-items:center;
  flex-direction: column; 
  gap: 10px;
}

@media (max-width: 768px) {
  .main-logo {
    margin-left: 0;       /* sola kaymayı engelle */
  }
  .app-logos {
    margin-left: 0;       /* logoları ortala */
    align-items: center;  /* ortala */
  }
  .footer-section {
    text-align: center;   /* menüleri ortala */
  }
  .google-partner{

     position: absolute;
        top: 610px;
        left: 20px;
  }


}