﻿main img {
    width: 100%;
    height: 100%;
    /* max-height: 360px; */ /* çok uzamasın diye */
    height: 598px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    object-fit: cover; /* resmi kırpmadan doldurur */
}

.image-section {
    width: calc(100% - 40px);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    padding: 40px 20px;
    margin-top: 2rem;
}



    .image-section p {
        font-size: 0.95rem;
        line-height: 1.8;
        color: gray;
        letter-spacing: 0.2px;
        margin-bottom: 0;
        font-weight: 100;
        text-align: center;
    }

@media (max-width: 576px) {
    main img {
        width: 100%;
        height: 100% !important;
        max-height: 360px;
        height: 597px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
        object-fit: cover;
        padding-right: 381px;
    }
}
