/* Temel stil ayarları */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* Başlık stili */
header {
    background-color: #F6851F;
    color: white;
    padding: 1em;
    text-align: center;
}

/* Başlık stili */
header2 {
     background-color: #F6851F;
    color: white;
    padding: 1em;
    text-align: center;
}


/* Ana içerik stili */
main {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1em;
}

/* Resim konteyneri stili */
.image-container {
    max-width: 100%;
    max-height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-container img {
    max-width
