/* Target ONLY the logo image */
.site-branding .custom-logo {
    transform: scale(5); /* Increase logo size 2x (adjust as needed) */
    transform-origin: left center; /* Scale from the left to prevent misalignment */
    height: 40px !important; /* Allow scaling */
    margin-top: 20px;
    max-height: 40px !important; /* Prevent header height increase */
}

/* Prevent header height changes */
.ast-primary-header-bar {
    min-height: 80px !important; /* Set fixed header height (adjust if needed) */
    overflow: hidden; /* Hide logo overflow */
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .site-branding .custom-logo {
        transform: scale(3); /* Smaller scaling on mobile */
        height: 30px;
        max-height: 30px !important;
    }
    .ast-primary-header-bar {
        min-height: 60px !important; /* Smaller header on mobile */
    }
}