How can I change my product title color without affecting other headings?

For specifically collections it would instead be:

.page__title.heading.h1 {
    color: #444444;
}

But for all h1 headings you could also just do:

.heading.h1 {
    color: #444444;
}