/* ==============================
   HAKKIMIZDA (ABOUT PAGE)
============================== */

/* ANA WRAPPER */
.about-wrapper {
    padding: 80px 0;
    background: #f5f5f7;
}

/* 2 KOLON YAPI */
.about-container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

/* SOL: RESİM */
.about-image img {
    width: 100%;
    height: 600px;
    border-radius: 18px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}

/* SAĞ TARAF */
.about-title {
    font-size: 42px;
    font-weight: 800;
    color: #222;
    margin-bottom: 25px;
    text-align: left !important; /* SOLA YASLA */
}

.about-text {
    font-size: 18px;
    line-height: 1.7;
    color: #444;
}

.about-text p {
    margin-bottom: 18px;
}

/* MOBİL */
@media(max-width: 900px) {
    .about-container {
        grid-template-columns: 1fr;
        text-align: left;
    }

    .about-title {
        text-align: left;
        font-size: 32px;
        margin-top: 20px;
    }

    .about-image img {
        width: 100%;
    }
}

/* =============================
        VALUES (ALT GRID)
============================= */

.about-values {
    padding: 100px 0;
    background: #ffffff;
    text-align: center;
}

.values-title {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 50px;
}

.values-grid {
    width: 90%;
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 35px;
}

.value-box {
    background: #f3f4f6;
    padding: 40px 25px;
    border-radius: 20px;
    text-align: center;
    transition: .3s;
}

.value-box i {
    font-size: 40px;
    margin-bottom: 15px;
    color: #ffb400;
}

.value-box h3 {
    margin-bottom: 10px;
    font-size: 20px;
    font-weight: 700;
}

.value-box p {
    font-size: 15px;
    color: #555;
}

.value-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.12);
}


/* =============================
        MOBILE
============================= */

@media(max-width: 900px) {
    .about-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .values-grid {
        grid-template-columns: repeat(2,1fr);
    }
}

@media(max-width: 600px) {
    .values-grid {
        grid-template-columns: 1fr;
    }
}
