﻿/* Genel stil */
.sustainability-container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    background-color: #2f5ea7; /* Arka plan rengi */
    padding: 20px;
    border-radius: 10px;
}

/* Sol taraftaki büyük kutu (Görsel) */
.sustainability-image {
    flex: 1;
    min-width: 320px;
    max-width: 400px;
    height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    font-weight: bold;
    border-radius: 10px;
    padding: 20px;
    background-color: white;
}

    .sustainability-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 10px;
    }

/* Sağ taraftaki üç kutu */
.sustainability-boxes {
    flex: 2;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin-left: 20px;
}

.sustainability-box {
    flex: 1;
    min-width: 158px;
    max-width: 174px;
    height: 220px;
    background-color: #5a92d6;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-weight: bold;
    color: white;
    border-radius: 10px;
    padding: 15px;
    box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.2);
}


@media (max-width: 768px) {
    .sustainability-container {
        flex-direction: column;
    }

    .sustainability-boxes {
        margin-left: 0;
        margin-top: 10px;
        justify-content: center;
        gap: 10px;
    }

    .sustainability-box {
        min-width: 90%;
        max-width: 90%;
        height: auto;
    }
}
