﻿.container {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    justify-content: center;
    padding-top: 20px;
}

/* Her satır (resim + açıklama) */
.row {
    margin: auto;
    display: flex;
    max-width: 800px;
    width: 90%;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 30px;
    flex-wrap: wrap;
    border: 1px solid #ccc;
    padding: 20px;
    border-radius: 8px;
    background-color: #fff;
}

.rowMenu {
    margin: auto;
    display: flex;
    max-width: 800px;
    width: 90%;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    margin-bottom: 5px;
    border: 1px solid #ccc;
    padding: 5px;
    border-radius: 8px;
    background-color: #fff;
    text-align: center;
    font-weight: bold;
}

/* Resim */
.image {
    flex: 1;
    align-items: center;
}

    .image img {
        width: 200px;
        height: auto;
        border-radius: 6px;
        display: block;
    }

/* Açıklama */
.text {
    flex: 2;
    min-width: 300px;
}

    .text h2 {
        margin-bottom: 10px;
    }

    .text p {
        line-height: 1.6;
        color: #555;
    }

/* Mobilde alt alta gelsin */
@media (max-width: 768px) {
    .row {
        flex-direction: column;
        text-align: center;
    }

    .image, .text {
        max-width: 300px;
    }
}
