You can change the umask on your system, that's the brute force option, and it will set the default creation mode of all files and folders. You could also set a sticky bit. e.g. chmod 2770
will make the folder you target r/w/x by the owner and group, no permissions for others, and it will ensure any new child folders or files have the same permissions.
tl;dr google umask or sticky bits