/*
 * İÇERİK BÖLÜMÜ 3 STİLLERİ (icerik3.php)
 * Hakkımızda/Neden Biz? konulu, görsel kolajlı ve metin/avantaj listeli bölüm.
 */

.icerik3-section {
    padding: 100px 0;
    background-color: #f7f7f7; /* Hafif bir arka plan rengi */
}

.icerik3-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.icerik3-wrapper {
    display: flex;
    gap: 50px;
    align-items: flex-start; /* Üstten hizala */
}

/* --- SOL BLOK: GÖRSEL KOLAJ (Tek Resim Üzerinden) --- */
.icerik3-gorsel-kolaj {
    flex: 0 0 50%; /* Sabit genişlik */
    max-width: 50%;
    position: relative;
    /* Gösterilen görseldeki kolaj efektini tek bir resimle taklit etmek için çerçeve/gölge kullanıldı */
}

.icerik3-gorsel-kolaj img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 15px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15); /* Derin bir gölge */
    /* Ekran görüntüsündeki gibi resmin sol üst ve sağ alt köşelerinden dışarı taşan çerçeveleri simule etmek için */
    border: 8px solid #ffffff; 
    transform: rotate(-2deg); /* Hafif bir açı ile kolaj hissi */
}

/* --- SAĞ BLOK: METİN ALANI --- */
.icerik3-metin-alanı {
    flex: 1; /* Kalan alanı kapla */
    padding-top: 20px;
}

.ust-baslik {
    font-size: 0.8rem;
    font-weight: 700;
    color: #20b2aa; /* Tema Rengi */
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.ana-baslik {
    font-size: 2.5rem;
    font-weight: 800;
    color: #333;
    line-height: 1.2;
    margin-bottom: 25px;
}

.ana-baslik .vurgu {
    color: #20b2aa;
}

.genel-aciklama {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 30px;
}

.uzmanlik-baslik {
    font-size: 1.3rem;
    font-weight: 700;
    color: #333;
    margin-top: 0;
    margin-bottom: 15px;
}

/* Avantajlar Listesi */
.avantajlar-listesi {
    list-style: none;
    padding: 0;
    margin-bottom: 40px;
}

.avantajlar-listesi li {
    font-size: 1rem;
    color: #444;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.avantajlar-listesi li i {
    color: #ffd700; /* Parlak sarı ikon */
    font-size: 1.2rem;
}

/* İletişim CTA Kutusu */
.iletisim-cta-kutu {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #e6ffec; /* Çok açık yeşil arka plan */
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 5px 15px rgba(32, 178, 170, 0.1);
}

.iletisim-destek {
    display: flex;
    align-items: center;
    gap: 15px;
}

.iletisim-destek i {
    font-size: 2rem;
    color: #20b2aa;
}

.iletisim-destek .destek-metni {
    font-size: 0.85rem;
    color: #666;
    display: block;
    margin-bottom: 3px;
}

.iletisim-destek .telefon-numarası {
    font-size: 1.3rem;
    font-weight: 700;
    color: #333;
    text-decoration: none;
}

.btn-teklif-al {
    background-color: #ffd700;
    color: #333;
    text-decoration: none;
    padding: 12px 25px;
    border-radius: 50px;
    font-weight: 700;
    transition: background-color 0.3s;
}

.btn-teklif-al:hover {
    background-color: #ffc400;
}

/* --- Mobil Görünüm --- */
@media (max-width: 992px) {
    .icerik3-wrapper {
        flex-direction: column;
    }
    
    .icerik3-gorsel-kolaj {
        flex: 0 0 100%;
        max-width: 100%;
        margin-bottom: 40px;
    }

    .icerik3-gorsel-kolaj img {
        transform: none; /* Mobil'de kolaj açısını kaldır */
    }

    .ana-baslik {
        font-size: 2rem;
    }

    .iletisim-cta-kutu {
        flex-direction: column;
        gap: 20px;
        align-items: flex-start;
    }

    .btn-teklif-al {
        width: 100%;
        text-align: center;
        /* DÜZENLEME: Kayma sorununu çözer ve butonu mobilde küçültür */
        box-sizing: border-box; /* Bu satır padding'in genişliğe dahil olmasını sağlar */
        padding: 12px 15px;     /* Yatay boşluğu azalttık */
    }
}
