Giving a background color only for product description section on product page in dawn theme

I am unable to find the code specific or theme options where I can give a background color for product information section. (NOT THE ENTIRE PAGE). I want to highlight the product description only. I tried previous answered .css codes but they did not work for Dawn Theme.

You must create another product template and then add custom CSS code for that product page

@sasimallik Can you please send me store url?

https://poochquencher.com/

and this is one of the product pages. I want only description section to have a background color. not the entire page

In case you haven’t found the solution.

Go to base.css then add this code at the bottom of the file:

.product__description {
background-color: red;
padding: 10px;
}

change red with the color you want.