* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: Arial, Helvetica, sans-serif;
}

body {
    background-color: #ffffff;
    color: #000;
}

.bolum1 {
    min-height: 100vh;
    margin-top: 0px;
    background-image: url('images/bg.jpg');
    background-attachment: fixed;
    /* sabit arka plan */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.7);
  }
  
/* Ana Alan */
.icerik-alani {
    max-width: 1200px;
    margin: 60px auto;
    padding: 0 20px;
}

/* Genel Kapsayıcı */
.bilgi-kapsayici {
    display: flex;
    gap: 40px;
    align-items: flex-start;
    flex-direction: row-reverse; /* RESİM SAĞA, METİN SOLA */
}

/* Resim Kutusu */
.resim-kutu {
    flex: 0 0 30%;
}

.resim-kutu img {
    width: 100%;
    max-width: 420px;
    display: block;
}

/* Metin Kutusu */
.metin-kutu {
    flex: 1;
}

.metin-kutu h1 {
    font-size: 26px;
    font-weight: bold;
    margin-bottom: 20px;
    line-height: 1.4;
}

.metin-kutu h2 {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 20px;
    line-height: 1.4;
}

.metin-kutu p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 14px;
    text-align: justify;
}

.metin-kutu .vurgulu {
    font-weight: bold;
}

/* Mobil Uyum */
@media (max-width: 768px) {
    .bilgi-kapsayici {
        flex-direction: row-reverse;
    }

    .resim-kutu {
        text-align: center;
    }

    .resim-kutu img {
        max-width: 300px;
        margin: 0 auto 20px;
    }
}

/* 320px MOBİL METİN DÜZENİ */
@media (max-width: 320px) {

    .icerik-alani {
        margin: 30px auto;
        padding: 0 14px;
    }

    .resim-kutu {
        display: none;
    }

    .metin-kutu h1 {
        font-size: 20px;
        line-height: 1.35;
        word-break: break-word;
    }

    .metin-kutu h2 {
        font-size: 16px;
        line-height: 1.4;
        word-break: break-word;
    }

    .metin-kutu p {
        font-size: 14px;
        line-height: 1.7;
        text-align: left; /* MOBİLDE justify KAPATILDI */
        word-break: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
    }

    .metin-kutu {
        padding: 0;
    }
}
   
