/* Genel Ayarlar */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: #1e0033;
    color: #ffffff;
}

/* Üst Menü */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1em;
    background-color: #1e0033;
}

.navbar a {
    color: #ffffff;
    text-decoration: none;
    margin: 0 30px;
    font-size: 36px;
    font-weight: bold;
}

.navbar a:hover {
    color: #9999ff;
}

/* Eğitim İçerik */
.education-section {
    display: flex;
    justify-content: space-around;
    align-items: flex-start;
    padding: 50px;
    gap: 20px; /* Sağ ve sol içerik arasındaki boşluk ayarı */
}

.left-content {
    max-width: 35%;
    text-align: left;
}

.left-content h1 {
    font-size: 48px;
}

.left-content h2 {
    font-size: 36px;
    margin-top: 20px;
}

.left-content p {
    font-size: 22px;
    margin-top: 20px;
}

/* Genel Ayarlar */
.buttons {
    display: flex;
    flex-direction: column;
    gap: 30px; /* Üst ve alt grup arasındaki boşluk */
    align-items: flex-start; /* Tüm grubu sola hizalamak için */
    margin-top: 30px; /* Üst boşluk ekler */
}

/* Üstteki iki buton */
.top-buttons {
    display: flex;
    gap: 15px; /* Üstteki butonlar arasındaki boşluk */
}

.top-buttons .button {
    width: 300px; /* Üst buton genişliği */
    text-align: center;
}

/* Alttaki üç buton */
.bottom-buttons {
    display: flex;
    gap: 15px; /* Alttaki butonlar arasındaki boşluk */
}

.bottom-buttons .button {
    width: 195px; /* Alt buton genişliği */
    text-align: center;
}

/* Genel buton stili */
.button {
    padding: 10px 20px;
    background-color: #ffffff;
    color: #1e0033;
    border-radius: 5px;
    font-weight: bold;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.button:hover {
    background-color: #9999ff;
}


/* Sağ İçerik */
.right-content {
    max-width: 60%;
    text-align: center;
    margin-left: 30px; /* Sol içerik ile sağ içerik arasındaki boşluğu artırmak için */
}

.itu-logo {
    width: auto;
    height: 300px; /* Fotoğraf ile aynı boyut */
    margin-bottom: 20px;
    margin-right: 100px; /* Fotoğraf ve logo arasındaki boşluk */
}

.presentation-photo {
    width: 300px; /* Fotoğrafın genişliği */
    margin: 20px 0;
    border-radius: 10px;
}

.icons {
    display: flex;
    justify-content: space-around; /* Aradaki boşluğu açmak için */
    gap: 5px; /* Simgeler arasındaki boşluk arttırıldı */
    margin-top: 20px;
}

.icons img {
    width: 200px;
}
