/* ================================
   HAKKIMIZDA – SPLIT SECTION
================================ */
#about {
    width: 100%;
    max-width: 1500px;
    margin: 80px auto;
    padding: 40px 60px;
    
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    align-items: center;
    gap: 60px;

    background: linear-gradient(180deg, #ffffff 0%, #f7f8fc 100%);
    border-radius: 40px;
    box-shadow: 0 15px 45px rgba(0,0,0,0.08);
}
#about {
    width: 100%;
    max-width: 1300px;
    margin: 79px auto;
    padding: 40px 60px;
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    align-items: center;
    gap: px;
    background: linear-gradient(180deg, #ffffff 0%, #f7f8fc 100%);
    border-radius: 40px;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.08);
    justify-content: space-evenly;
    justify-items: center;
    align-content: space-between;
}
/* Sol Metin Bloğu */
.about-text {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.about-eyebrow {
    font-size: 18px;
    font-weight: 700;
    color: #344054;
    margin-bottom: -8px;
}

.about-title {
    font-size: 64px;
    font-weight: 800;
    margin: 0;
    color: #0d1a32;
}

.about-text p {
    font-size: 20px;
    line-height: 1.6;
    color: #344054;
    max-width: 550px;
}

/* Sağ Görsel */
.about-media img {
    width: 100%;
    height: auto;
    border-radius: 24px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
    object-fit: cover;
}

/* İncele Butonu */
.btn-about {
    margin-top: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 12px 32px;
    border: 2px solid #000;
    border-radius: 14px;

    font-weight: 700;
    font-size: 18px;
    text-decoration: none;
    color: #000;

    transition: all .25s ease;
}

.btn-about:hover {
    background: #000;
    color: #fff;
}


/* ================================
   MOBİL DÜZEN
================================ */
@media (max-width: 980px) {
    #about {
        grid-template-columns: 1fr;
        padding: 40px 25px;
        gap: 40px;
    }

    .about-title {
        font-size: 42px;
    }

    .about-text p {
        font-size: 18px;
    }
}
