/* Logo boyutu için özel CSS */
header .logo {
    width: 300px !important;
    height: auto !important; /* Orantıyı korumak için */
}

/* Sticky menü logo */
header.menu-sticky .logo-sticky {
    width: 300px !important;
    height: auto !important;
}

/* Diğer ekran boyutları için başka ayarlar yapılabilir */
@media (max-width: 767px) {
    header .logo_block .logo {
        width: 300px !important;
        height: auto !important;
    }
}

@media (max-width: 365px) {
    header .logo_block .logo {
        width: 250px !important; /* Daha küçük ekranlarda biraz daha küçültebilirsiniz */
        height: auto !important;
    }
}