/* -------------------------------------------------------------------------- */
/* HAKKIMIZDA SAYFASI CSS STİLLERİ                            */
/* -------------------------------------------------------------------------- */

/* Genel Sayfa Yapısı */
body {
    background-color: #f8f8f8;
    color: #333;
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Sayfa Başlığı (Hero Alanı - Diğer sayfalara benzer şekilde) */
.page-hero {
    background-color: #20b2aa; /* Ana tema rengi */
    color: white;
    padding: 80px 0;
    text-align: center;
    margin-bottom: 40px;
    border-radius: 0 0 15px 15px; /* Alt köşeleri yuvarlak */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.page-hero h1 {
    font-size: 2.5rem;
    margin: 0;
    font-weight: 700;
}

.page-hero p {
    font-size: 1.1rem;
    margin-top: 10px;
    opacity: 0.9;
}


/* Ana İçerik Bölümü (Metin ve Resim) */
.about-section {
    display: flex;
    align-items: flex-start;
    gap: 40px;
    padding: 20px 0;
    margin-bottom: 60px;
}

.about-text {
    flex: 1;
}

.about-text h2 {
    font-size: 2rem;
    color: #2c3e50;
    margin-bottom: 20px;
    font-weight: 600;
}

.about-text p {
    margin-bottom: 15px;
    color: #555;
    text-align: justify;
}

.about-image {
    flex: 1;
    min-width: 300px;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    object-fit: cover;
    display: block;
}

/* Vizyon ve Misyon Bölümü */
.vize-misyon-wrapper {
    display: flex;
    gap: 30px;
    margin-bottom: 60px;
}

.vize-misyon-kart {
    flex: 1;
    background-color: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    border-top: 4px solid #ffd700; /* Vurgu rengi */
}

.vize-misyon-kart h3 {
    font-size: 1.5rem;
    color: #20b2aa;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.vize-misyon-kart i {
    margin-right: 10px;
    color: #ffd700;
    font-size: 1.2em;
}

.vize-misyon-kart p {
    color: #666;
}

/* Mobil Uyumu */
@media (max-width: 992px) {
    .about-section {
        flex-direction: column;
    }
    .about-image {
        order: -1; /* Resmi mobilde metnin üstüne al */
        min-width: 100%;
        margin-bottom: 20px;
    }
    .vize-misyon-wrapper {
        flex-direction: column;
    }
    .page-hero {
        padding: 50px 0;
    }
    .page-hero h1 {
        font-size: 2rem;
    }
}
