body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
}

header {
    background: #000; /* Siyah arkaplan */
    color: #fff;
    padding: 10px 0;
    text-align: center;
}

header #logo {
    width: 150px; /* Logo boyutunu artır */
    height: auto;
}

section {
    padding: 20px;
    margin: 10px;
}

h2 {
    color: #333;
}

ul {
    list-style-type: none;
    padding: 0;
}

ul li {
    background: #f4f4f4;
    margin: 5px 0;
    padding: 10px;
    border-left: 5px solid #333;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

ul li:hover {
    background-color: #ccc; /* Griye dönsün */
}

.school-name {
    font-weight: bold;
}

.school-date {
    font-style: italic;
    color: #666;
}

#about-me p, #education ul, #skills ul, #languages ul, #projects ul {
    margin: 0;
}

footer {
    text-align: center;
    padding: 5px 0; /* Daha küçük padding */
    background: #333; /* Koyu gri arkaplan */
    color: #fff;
    position: relative;
    width: 100%;
    bottom: 0;
}

.progress-bar {
    width: 100%;
    background-color: #ddd;
    border-radius: 5px;
    overflow: hidden;
    margin-top: 5px;
}

.progress {
    height: 20px;
    background-color: #000; /* İlerleme çubuğu rengi */
    width: 0; /* Başlangıçta sıfır */
    transition: width 0.5s; /* Geçiş süresi */
}
