How can I make product descriptions more appealing on my website?

Hello :slightly_smiling_face:

I would like my products description (both in English and Dutch) to look a little bit more appealing. In every product description, there are 3 sections: what I do, how to use me, and why I am special. I would like these 3 sections to stand out somehow, maybe be a little bit bigger, bold, and a different color. Is this possible?

Also, if I would want the color to be different depending on the product category, would that be possible too?

This is the link of my webshop:

https://designmehair.nl/

Thank you in advance!

@Anna65
Hello,
Yes It’s Possible

.product-page--block h4 {
	font-weight: 700;
	font-size: 20px;
	letter-spacing: 0;
}

Add this css at the bottom of Online Store->Theme->Edit code->Assets->ttheme–critical.css.liquid or theme.scss.liquid

Like This

thank you :slightly_smiling_face:

and is it possible to change the color?

@Anna65
Yes It’s Possible to change color
Only add a color property

.product-page--block h4 {
	font-weight: 700;
	font-size: 20px;
	letter-spacing: 0;
        color : #ff0000;
}

Add this css at the bottom of Online Store->Theme->Edit code->Assets->ttheme–critical.css.liquid or theme.scss.liquid

This Solution is useful so please accept the solution and Like Thanks

Thank you very much!

But I would like to have a different color in every collection/products, is that something possible too or I can only choose one color?

Also, I have added the following but it hasn’t changed it all…