/**
 * Contact Us page additions
 *
 * Styles only the blocks injected into the existing Elementor layout:
 * the author block and introduction inside the page header band, and the
 * closing line beneath the contact form. The page's own design is untouched.
 */

/* Author block inside the dark page header band */
.abp5_author_block_page_header {
    margin: 16px 0 0;
    text-align: left;
}

/* Introduction — mirrors .abp5_page_header_description */
.abp5_contact_page_intro {
    max-width: 720px;
    margin: 18px auto 0;
}

.abp5_contact_page_intro p {
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
}

/* Closing line — continues the contact form's black band */
.abp5_contact_page_outro {
    box-sizing: border-box;
    background: #000000;
    padding: 0 3% 60px;
}

.abp5_contact_page_outro p {
    max-width: 1290px;
    margin: 0 auto;
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
}

@media (max-width: 767px) {
    .abp5_contact_page_intro p,
    .abp5_contact_page_outro p {
        font-size: 15px;
    }

    .abp5_contact_page_outro {
        padding-bottom: 40px;
    }
}
