.references-container {
    display: flex;
    flex-direction: column;
    justify-content: center; /* Dikey ortalama */
    align-items: center; /* Yatay ortalama */
    text-align: center;
   padding-left: 20px;
   padding-right: 20px;
    min-height: 100vh; /* Tüm ekranı kaplar ve ortalar */
    
  }
  

  .heading-ref {
    font-size: 26px;
    font-weight: bold;
    margin-bottom: 10px;
    color: #003366; /* Başlık rengi */

  }
  
  .subheading-ref {
    font-size: 18px;
    margin-bottom: 30px;
    color: #003366; /* Alt başlık rengi */
  }
  
  .logos {
    display: flex;
    flex-wrap: wrap; /* Görsellerin yan yana ve alta doğru dizilmesini sağlar */
    justify-content: center; /* Ortalar */
    gap: 20px; /* Görseller arasında boşluk */
    background: rgba(255, 255, 255, 0.3);
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding:10px
  }
  
  .logo-item {
    width: 150px;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .logo-image {
    max-width: 100%;
    height: auto;
    object-fit: contain; /* Görselin kutuya sığmasını sağlar */
  }
  