body {
    font-family: Arial, sans-serif;
    text-align: center;
    background-color: #f4f4f4;
    margin: 0;
    padding: 0;
}

/* Dil Seçici */
.lang-selector {
    display: flex;
    justify-content: center;
    gap: 10px;
    padding: 10px;
    background-color: #008CBA;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
}

.lang-img {
    width: 32px;
    height: 32px;
    cursor: pointer;
    transition: transform 0.3s ease; /* Yumuşak bir geçiş efekti ekliyoruz */
}

.lang-img:hover {
    transform: scale(1.2); /* Boyutu 1.2 kat büyütüyoruz */
}

/* Header */
header {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #008CBA;
    color: white;
    padding: 20px;
    border-radius: 10px;
    margin-top: 60px; /* Dil seçici menüsünden dolayı header'ın yerini düzelttik */
}

.header-center {
    text-align: center;
}

.profil-resim {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    border: 3px solid white;
    margin-bottom: 10px;
}

h1 {
    margin: 0;
}

section {
    background: white;
    padding: 20px;
    margin: 20px auto;
    width: 80%;
    border-radius: 10px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
}

a {
    color: #008CBA;
    text-decoration: none;
    font-weight: bold;
}

a:hover {
    text-decoration: underline;
}
