/* Genel Stiller */
.custom-container {
    width: 100%;
    padding: 0 clamp(20px, 5vw, 60px);
    margin: 0 auto;
    max-width: 90%;
}
.page-main-image {
    display: block;
    margin: 2rem auto 0 auto; /* üst boşluk + yatay ortalama */
    width: 100%;
    max-width: 600px;
    height: auto;
    object-fit: cover;
}

.page-main-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
}




.about-section {
    background: #54D463;
    color: white;
    padding: 60px 0;
    display: flex;
    align-items: flex-end;
    background-image: url(/images/about-bg.webp);
    background-size: cover;
    background-position: center;
    min-height: 350px;
}
.about-header{
    padding: 12px;
}

.about-header h1 {
    font-size: clamp(32px, 5vw, 48px);
    font-weight: bold;
    margin-bottom: 10px;
}

.about-header h2 {
    font-size: clamp(18px, 3vw, 24px);
}

/* Misyon-Vizyon Bölümü */
.mission-vision {
    background: white;
    color: #333;
    padding: 60px 0;
}

.content-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.main-content {
    flex: 1;
    min-width: 300px;
}

.logo-sidebar {
    width: 100%;
    max-width: 320px;
}

.mission-box,
.vision-box {
    margin-bottom: 40px;
}

.mission-box h3,
.vision-box h3 {
    font-size: clamp(24px, 3vw, 32px);
    margin-bottom: 20px;
    font-weight: 700;
}

/* Logo Stilleri */
.fastest-growing-doner-brand {
    top: 20px;
}

.fastest-growing-doner-brand img {
    width: 100%;
    max-width: 280px;
    height: auto;
    display: block;
    margin: 0 auto;
}

/* Responsive Ayarlar */
@media (max-width: 991px) {
    .content-wrapper {
        flex-direction: column-reverse;
    }

    .logo-sidebar {
        max-width: 100%;
    }

    .fastest-growing-doner-brand {
        position: static;
        margin-bottom: 30px;
    }
}

.team-illustration {
    text-align: center;
    margin-top: 40px;
}
