/* Sayfaya özel: Arka plan resmi ve içerik */
#aboutpage {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
   

  }
  
  .hero-section {
    position: relative;
    height: 100vh;
   background-image: url('../image/arkaplan/about2.png');


    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding-top: 60px; /* navbar yüksekliği kadar */
  }
  .background-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.5; /* Saydamlık buradan */
    z-index: 0;
  }
  
  .hero-section .overlay {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.4); /* Opaklaştırma */
    z-index: 1;
  }
  
  .hero-content {
    position: relative;
    z-index: 2;
    color: white;
    max-width: 800px;
  }
  
  .hero-content h1 {
    font-size: 48px;
    margin-bottom: 20px;
  }
  
  .hero-content img {
    max-width: 100%;
    height: auto;
    margin-bottom: 20px;
  }
  
  .hero-content p {
    font-size: 18px;
    line-height: 1.6;
  }
  