
/* Misyonumuz stilleri */

.mission-content{
    display: flex;
    justify-content: center;
    align-items: center;
}

.mission {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    width: 80%;
    height: auto;
    margin: 0 0 100px;
    border: 5px solid #cacaca;
    border-radius: 20px;
    background-color: #f4f4f4; 
}

.mission .content {
    flex: 1;
    padding: 50px;
}

.mission h2 {
    margin-bottom: 30px;
    font-size: 25px;
    font-weight: bold;
    color: #00645f;   
}

.mission p {
    margin-bottom: 30px;
    font-size: 14px;
    line-height: 1.6;  
}

.mission .image {
    flex: 1;
    text-align: center;
}

.mission .image img {
    max-width: 60%;
    height: auto;
    transition: transform 1s ease-in-out;
}

.mission .image img:hover {
    transform: rotate(360deg); 
}

/* Mobil stili */

@media (max-width: 1080px) {
    .mission {
        flex-direction: column;
        padding: 20px;
        margin-bottom: 50px;
    }

    .mission .content {
        width: 100%;
        padding: 0px;
        text-align: center;
    }

    .mission h2 {
        font-size: 23px;
        margin-bottom: 25px;
    }

    .mission p {
        font-size: 13px;
        line-height: 1.6;
        margin-bottom: 20px;
        text-align: center;
    }

    .mission .image {
        width: 100%;
        margin-top: 20px;
        justify-content: center;
    }

    .mission .image img {
        max-width: 80%;
        transition: transform 0.5s ease-in-out;
    }

    .mission .image img:hover {
        transform: rotate(180deg);
    }
}

/* --------------------------------------------------------- */

