.faq_wrap{
    padding: 20px;
    max-width: 1000px;
    margin: 0 auto;
}
    .faq_item{
        margin-bottom: 20px;
        padding: 10px;
    }
        .faq_item h3{
            font-size: 1.8rem;
            font-family: var(--primary-font);
            color: var(--dark-grey);
        }

        .faq_item p{
            font-size: 1.1rem;
            color: var(--dark-grey);
        }

            .faq_item p a{
                color: var(--primary-color);
                font-weight: bold;
            }

            .faq_item p strong{
                color: var(--dark-grey);
                font-weight: bold;
            }

            #services_p_content {
                font-size: 1rem;
                font-family: var(--primary-font);
                color: var(--dark-grey);
                line-height: 1.6;
                text-align: left;
                padding: 15px;
                margin-bottom: 20px;
                border-radius: 8px;
            }

            #services_p_content h2 {
                font-size: 1.5rem;
                font-family: var(--secondary-font);
                color: var(--primary-color);
                margin: 15px 0;
                text-transform: uppercase;
                border-left: 5px solid var(--primary-color);
                padding-left: 10px;
            }
            
            #services_p_content h3 {
                font-size: 1.2rem;
                color: var(--medium-grey);
                margin-top: 12px;
                font-weight: 700;
                border-bottom: 2px solid var(--medium-grey);
                padding-bottom: 5px;
            }
            
            /* Lists Inside Services Content */
            #services_p_content ul {
                list-style: none;
                padding-left: 20px;
                margin: 30px 0;
            }
            
            #services_p_content ul li {
                position: relative;
                font-size: 1rem;
                padding-left: 25px;
                margin-bottom: 8px;
                color: var(--dark-grey);
            }
            
            /* Custom Checkmark Bullet Point */
            #services_p_content ul li::before {
                content: "✔"; 
                position: absolute;
                left: 0;
                top: 0;
                color: var(--primary-color);
                font-weight: bold;
            }
            
            /* Responsive Typography for Tablets & Larger Screens */
            @media only screen and (min-width: 768px) {
                #services_p_content {
                    font-size: 1.1rem;
                    padding: 20px;
                    margin-bottom: 25px;
                }
            
                #services_p_content h2 {
                    font-size: 1.8rem;
                    padding-left: 15px;
                }
            
                #services_p_content h3 {
                    font-size: 1.4rem;
                }
            
                #services_p_content ul li {
                    font-size: 1.1rem;
                }
            }
            
            /* Larger Screens (Desktops) */
            @media only screen and (min-width: 1024px) {
                #services_p_content {
                    font-size: 1.2rem;
                    padding: 25px;
                    margin-bottom: 30px;
                    max-width: 1000px;
                    margin-left: auto;
                    margin-right: auto;
                }
            
                #services_p_content h2 {
                    font-size: 2rem;
                }
            
                #services_p_content h3 {
                    font-size: 1.5rem;
                }
            
                #services_p_content ul li {
                    font-size: 1.2rem;
                }
            }