How Do I Center Align These in Dawn Theme?

I need these center aligned. See attached image and website here.

Hello

Add this code at end of the “section-main-product.css” file in assets.

.product__text.caption-with-letter-spacing+.product__title {
    text-align: left;
}

Thank you

Hello,

For aligning the text in center add this code at end of “component-accordion.css” file under assets.

.accordion .summary__title { 
    justify-content: center;
}

Thank you.