How can I align text with images on my About Us page?

Hi guys,

Would like to control the text padding in About us page to be aligned with images.

Thank you

https://allianceautoproducts.com/

@Alliance
Hello,

.medium-up--push-one-twelfth p:first-of-type {
	width: 82%;
	margin: 20px auto;
}

Add this CSS at the bottom of Online Store->Theme->Edit code->Assets->theme.scss.liquid

Like This

@Alliance
add below css

p {
    color: #000;
    margin: 0px 81px 18.44444px !important;
}

@Alliance ,

.grid__item.medium-up--five-sixths p {
    width: 80%;
    margin: 0 auto;
}

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

@oscprofessional
add below css

.medium-up--push-one-twelfth p:first-of-type {
    width: 79% !important;
    margin: 20px auto;
}

Didn’t work on other parts of the page. Hopefully , other pages don’t get affected.

Worse

@Alliance
Hello,

p:last-child {
	width: 83%;
	margin: 0 auto;
}
p:nth-last-child(2) {
	width: 83%;
	margin: 20px auto;
}
.rte ul {
	width: 83%;
	margin: 0 auto;
}
.rte p:nth-child(3n+3) {
	width: 83%;
	margin: 10px auto;
}

Add this CSS at the bottom of Online Store->Theme->Edit code->Assets->theme.scss.liquid

Like This

It affected all other pages.