









/* --- HAKKIMIZDA SAYFASI TASARIMI --- */

/* Banner */
.image_box {
    background-color: rgb(5,136,141);
    height: 150px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 30px;
    width: 100%;
}
.image_box h1 {
    color: white;
    font-size: 2.5rem;
    margin: 0;
    font-weight: 600;
}

/* Genel Ayarlar */
.hakkimizda-section, .is-ortaklari-bolumu, .hizmetler-bolumu {
    padding: 60px 0;
    width: 100%;
}
.container, .is-ortaklari-container, .hizmetler-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Yan Yana Düzen (Flex) */
.container, .is-ortaklari-container {
    display: flex;
    gap: 50px;
    align-items: center;
}
.hizmetler-container {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

/* İçerik ve Resim Oranları */
.content-text { flex: 1.5; font-size: 18px; line-height: 1.6; }
.content-image { flex: 1; }
.sol-resim-alani { flex: 1; }
.sag-metin-alani { flex: 1.5; font-size: 18px; line-height: 1.6; }

/* Resimler */
.content-image img, .sol-resim-alani img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Başlıklar */
.content-text h2, .sag-metin-alani h2 {
    border-bottom: 3px solid rgb(5,136,141);
    display: inline-block;
    padding-bottom: 10px;
    margin-bottom: 25px;
    color: #333;
    font-size: 2.2rem;
}

/* Listeler */
.sag-metin-alani ul {
    list-style: disc;
    margin-left: 20px;
    margin-top: 20px;
}
.sag-metin-alani li { margin-bottom: 10px; }

/* Hizmet Kutuları */
.hizmet-kutu {
    flex: 1 1 300px;
    background: #fff;
    border: 1px solid #eee;
    border-top: 5px solid rgb(5,136,141);
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    border-radius: 8px;
    transition: transform 0.3s;
}
.hizmet-kutu:hover { transform: translateY(-5px); }
.hizmet-kutu h3 { color: rgb(5,136,141); font-size: 1.3rem; margin-bottom: 15px; }

/* Buton */
.btn-daha-fazla {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 25px;
    border: 1px solid rgb(5,136,141);
    color: rgb(5,136,141);
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    transition: 0.3s;
}
.btn-daha-fazla:hover {
    background: rgb(5,136,141);
    color: white;
}

/* Mobil Uyumluluk */
@media (max-width: 900px) {
    .container, .is-ortaklari-container {
        flex-direction: column;
    }
    .content-image, .sol-resim-alani {
        width: 100%;
    }
    .content-image { order: -1; margin-bottom: 20px; } /* Mobilde resim üstte */
}