Why is my CSS not targeting the paragraph in my featured columns section?

Hi,

I have added the following heading and paragraph to this section.


### {{ section.settings.heading }} 

{{ section.settings.description }}

{% for block in section.blocks %}

Mow when I target those elements with CSS, all rules seem to apply perfectly except the paragraph. When I check on the inspector, is like the paragraph was outside of that class for that particular element. The website in question is https://v9cynb6aq5xcae1n-60679061724.shopifypreview.com. password: geimpe

.btn-section-columns {
	font:size: 30px;
	display: block;
    margin: 20px auto 20px auto;
    width: 20%;
	padding: 15px 32px;

}
.section-heading {
    color: teal;
    font-size: 52px;
    text-align: center;
	padding-top: 40px;
} 
             
.image-columns-description-one {
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 50%;
}

#section-description-one {
	font-size: 32px;
    text-align: center;
	color: white;
}

.featured-columns-section {
	background-color: #caaea0; 
}

Any thoughts?

Thanks in advance

Hello,

I think you missed to close the for loop

{%endfor %}

Thank you.