.map-section {
    background-color: #FAF9F6;
    font-family: 'Montserrat', Arial, sans-serif;
    padding-top: 10px;
}

.map-section h3 {
    font-size: 32px;
    font-weight: 600;
    color: black;
    margin-bottom: 30px;
    text-align: center;
    position: relative;
}

.map-section .container {
    height: 100%;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    gap: 150px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.map-section .container .map-container {
    flex: 6;
    height: 500px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.map-section .container .yazi {
    flex: 4;
    gap: 40px;
    position: relative;
    align-items: center;
    overflow: wrap;
    margin-bottom: 80px;
}

.map-section .container .yazi h1 {
    font-size: 24px;
    font-weight: 500;
    color: black;
}

.map-section .container .yazi p {
    font-size: 18px;
    font-weight: 300;
    color: black;
}

/* Tablet ve küçük desktop için */
@media (max-width: 992px) {
    .map-section {
        margin-bottom: 50px;
    }

    .map-section .container {
        gap: 30px;
    }

    .map-section .container .yazi h1 {
        font-size: 22px;
    }

    .map-section .container .yazi p {
        font-size: 16px;
    }

    .map-section .container .map-container {
        height: 400px;
    }
}

/* Tablet ve mobil için dikey düzen */
@media (max-width: 768px) {
    .map-section {
        margin-bottom: 40px;
    }

    .map-section h3 {
        font-size: 28px;
        padding: 20px 0 0 0;
    }

    .map-section .container {
        flex-direction: column;
        gap: 0px;
    }

    .map-section .container .map-container {
        width: 100%;
        height: 350px;
    }

    .map-section .container .map-container .svg-turkiye-haritasi{
        position: relative;
        width: 80%;
        height: 300px; /* İstediğin yüksekliği burada belirtebilirsin */
        overflow: hidden;
        display: flex; /* Flexbox kullanarak içeriği ortalayacağız */
        justify-content: center; /* Yatayda ortala */
        align-items: center; /* Dikeyde ortala */
    }

    .map-section .container .yazi {
        width: 80%;
        margin-bottom: 0;
    }

    .map-section .container .yazi h1 {
        font-size: 20px;
        text-align: center;
        padding: 0 10px;
        line-height: 1.2;
    }

    .map-section .container .yazi p {
        font-size: 15px;
        padding: 0 10px;
    }
}

/* Küçük mobil cihazlar için */
@media (max-width: 576px) {
    .map-section {
        margin-bottom: 30px;
    }

    .map-section h3 {
        font-size: 24px;
        padding: 20px 0 0 0;
    }

    .map-section .container {
        flex-direction: column;
        gap: 0px;
    }

    .map-section .container .map-container {
        height: 300px;
    }

    .map-section .container .yazi {
        margin-bottom: 10px;
    }

    .map-section .container .yazi h1 {
        font-size: 20px;
        text-align: center;
        padding: 0 10px;
        line-height: 1.2;
    }

    .map-section .container .yazi p {
        font-size: 15px;
        padding: 0 10px;
    }
}

@media (max-width: 430px){

}