/* Normal CSS */
.icerik-container {
    display: flex;
    align-items: center;
    gap: 20px;
    justify-content: space-between;
}

.resim-kutu {
    flex: 0.5;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.resim-kutu img {
    width: 100%;
    max-width: 300px;
    height: auto;
    border-radius: 8px;
}

.metin-kutu {
    flex: 1;
    text-align: right;
}

.radyator-container {
    display: flex;
    flex-direction: row;
    gap: 20px;
    padding: 20px;
}

.radyator-bilgiler {
    flex: 1;
}

.radyator-resimler {
    flex: 0.5;
    display: flex;
    justify-content: center;
    align-items: center;
}

.radyator-resimler img {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 8px;
}

.radyator-navigasyon {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.radyator-buton {
    padding: 10px 20px;
    cursor: pointer;
    background-color: #0056b3;
    color: #fff;
    border-radius: 5px;
}

.radyator-buton.aktif {
    background-color: #0056b3;
}

.radyator-icerik {
    display: none;
}

.radyator-icerik.aktif {
    display: block;
}

.harita-container {
    margin-top: 50px;
    padding: 20px;
    border: 1px solid #ccc;
    border-radius: 8px;
}

h5 {
    color: #800000;
}

.satir-container {
    display: flex;
    align-items: center;
    gap: 20px;
    justify-content: space-between;
}

.sol-kisim {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.metin-div, .not-div {
    text-align: justify;
}

.resim-div {
    flex: 0.5;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.resim-div img {
    width: 100%;
    max-width: 300px;
    height: auto;
    border-radius: 8px;
}

h3, h4, h2 {
    color: #062974;
}

/* Tüm paragrafları justify yap */
p {
    text-align: justify;
}