/* Mobile header adjustments for new logo */
@media (max-width: 767px) {
    .header-content {
        flex-wrap: nowrap;
        gap: 1rem;
        justify-content: space-between;
        align-items: center;
        padding: 0.75rem 0;
    }
    
    .site-branding {
        flex: 0 0 auto;
        order: 1;
    }
    
    .site-logo {
        max-height: 45px;
        max-width: 150px;
    }
    
    .header-cta {
        order: 3;
        flex: 0 0 auto;
    }
    
    .header-cta .btn {
        padding: 8px 16px;
        font-size: 0.9rem;
    }
    
    .mobile-menu-toggle {
        order: 2;
        flex: 0 0 auto;
        margin-left: auto;
        margin-right: 0.5rem;
    }
    
    .main-nav {
        display: none;
    }
}

/* Tablet adjustments */
@media (min-width: 768px) and (max-width: 1024px) {
    .site-logo {
        max-height: 55px;
        max-width: 180px;
    }
    
    .header-content {
        padding: 0.875rem 0;
    }
}

/* Ensure header maintains consistent height */
.header-content {
    min-height: 80px;
    display: flex;
    align-items: center;
}

@media (max-width: 767px) {
    .header-content {
        min-height: 70px;
    }
}