/* Üst Logo ve Çizgi */
header {
    text-align: center;
    background-color: #fff;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 20px;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

header img {
    max-width: 400px;
}

header hr {
    border: none;
    height: 1px;
    background-color: #e0e0e0;
    margin: 15px 0;
}

/* Mega Menü */
.mega-menu {
    display: flex;
    justify-content: center;
    padding: 10px 0;
    background-color: #fff; /* Arka plan rengi */
}

.mega-menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 20px;
}

.mega-menu li {
    position: relative;
}

.mega-menu a {
    text-decoration: none;
    font-weight: bold;
    color: #000; /* Normal durumdaki yazı rengi */
    font-size: 14px;
    transition: color 0.3s ease; /* Renk geçişi için animasyon */
}

.mega-menu a:hover {
    color: #007bff; /* Hover durumundaki yazı rengi */
}

/* Responsive */
@media (max-width: 768px) {
    header img {
        max-width: 220px;
    }
}
