body.hakkimizda-page {
   
    overflow-x: hidden; /* Sayfa içeriği taşarsa kaydırma çubuğu ekler */
    background-color: white;
}

.about-section {
    background-color: white;
    font-family: Arial, sans-serif;
    color: #333;
    margin-top: 233px;
    background: url("/images/logo/bey.jpg") no-repeat center center;
    background-size:cover ;
        width: 100vw; /* Genişlik */
}

.about-header {
    text-align: center;
    margin-top: -246px;
    padding: 40px;
}

.about-header h1 {
    font-size: 2.5rem;
    font-family: 'Josefin Sans', sans-serif ;
    font-weight: 500; 

    color: #000;
}

.about-header p {
    font-size: 1.2rem;

    color: #555;
}

.about-content {
    display: flex;
    flex-wrap: wrap; /* Küçük ekranlar için alt alta geçiş yapar */
    font-family:Georgia, 'Times New Roman', Times, serif;
    gap: 20px;
}

.about-text {
    flex: 1;
    line-height: 1.8;
}

.about-text h2 {
    font-size: 1.8rem;
    margin-bottom: 10px;
    color: #000;
}

.about-text p {
    font-size: 1rem;
    
    margin-bottom: 20px;
}
.about-image {
    width: 100vw; /* Tam ekran genişlik */
    height: 450px; /* Yüksekliği ayarlayabilirsin */
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 0; /* Header ile üst üste gelmesini engelle */
}

.about-image img {
    width: 100%; /* Sayfanın tamamını kaplasın */
    /* Belirlenen yüksekliği doldursun */
    height: 400px;
    margin-top:-521px ;
    object-fit: cover; /* Görselin tam oturmasını sağlar */
    border-radius: 0; /* Köşeleri düzleştir */
}

