.ReferencelastPage {
    background: url("../image/arkaplan/referansbg.png") no-repeat center center fixed;
    background-size: cover;
    position: relative;
  }
  
  .ReferencelastPage::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.6); /* Hafif saydam beyaz filtre */
    z-index: -1;
  }
  
  .reference-container {
    padding: 60px 20px;
    text-align: center;
  }
  
  .reference-container h1 {
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 30px;
  }
  
  .reference-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
  }
  
  .reference-grid a {
    display: block;
    width: 180px;
    transition: transform 0.3s;
  }
  
  .reference-grid a:hover {
    transform: scale(1.05);
  }
  
  .reference-grid img {
    width: 100%;
    height: auto;
    border: 2px solid #ccc;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
  }
  