body {
    margin: 0;
    padding: 0;
    font-family: 'Montserrat', Arial, sans-serif;
    background: #fff;
    color: #222;
}

.container {
    display: flex;
    flex-direction: row;
    align-items: start;
    justify-content: center;
    gap: 40px;
    padding: 40px 0;
    max-width: 1200px; /* Eskiden 900px idi */
    margin: 0 auto;
}

.left {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;      /* Yatayda ortala */
    justify-content: flex-start; /* Dikeyde üstte tut */
}

.main-img {
    width: 280px;
    margin-top: 20px;
    margin-bottom: 20px;
    border-radius: 10px;
}

.img-credit {
    margin-top: 20px;
    font-size: 16px;
    color: #444;
}

.img-credit a {
    color: #222;
    text-decoration: underline;
}

.right {
    flex: 2;
    max-width: 950px; /* Eskiden 720px idi */
    padding-top: 20px;

}


h1 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 24px;
    line-height: 1.1;
}
.right p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 24px;
    text-align: justify;
}

.sample-text {
    font-size: 14px;
}
hr {
    margin: 32px 0 16px 0;
    border: none;
    border-top: 2px solid #ddd;
}


@media (max-width: 900px) {
    .container {
        flex-direction: column;
        align-items: center;
        gap: 0;
    }
    .main-img {
        width: 90vw;
        max-width: 400px;
    }
    .right {
        max-width: 90vw;
        padding-top: 20px;
    }
    h1 {
        font-size: 40px;
    }
}