/* /styles/global.css */
body {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 16px;
    color: #000000;
    line-height: 1.6;
    margin: 0 auto;
    padding: 20px;
}

/* Apply layout limits only to content */
.content-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

h1 {
    font-size: 28px;
    color: #0000ff;
    margin-bottom: 10px;
}

h2 {
    font-size: 22px;
    color: #0000cd;
    margin-top: 20px;
}

p, ul {
    margin-bottom: 15px;
}

ul {
    padding-left: 20px;
}

a.cta-button {
    display: inline-block;
    padding: 10px 20px;
    background-color: #0000ff;
    color: #fff !important;
    text-decoration: none;
    border-radius: 5px;
}

a.cta-button:hover {
    background-color: #0000cd;
}

img.profile-image {
    max-width: 100%;
    height: auto;
    float: right;
    margin: 5px 10px;
}

/* Keep page banner titles white */

#page-title-contact-strip .page-title {
    max-width: 65% !important;
}
.page-title h1,
.page-title h2,
.page-title p {
    color: white !important;
}

/* HERO OVERLAY CONTAINER (applied to slider) */
#hero-contact, .hero-text-overlay {
    background: linear-gradient(to bottom, rgba(255,255,255,0.85), rgba(255,255,255,0.7)) !important;
    padding: 40px 20px;
    max-width: 800px;
    margin: 0 auto;
    border-radius: 10px;
    text-align: center;
    position: relative;
    z-index: 1;
}

/* Hero slider text override (dark blue) */
#heroContainer .slideText h1,
#heroContainer .slideText h2,
#heroContainer .slideText p {
    color: #003087 !important;
}

/* MOBILE STYLING */
@media (max-width: 768px) {
    h1 {
        font-size: 24px;
    }

    h2 {
        font-size: 20px;
    }

    img.profile-image {
        float: none;
        margin: 10px 0;
    }

    a.cta-button {
        width: 100%;
        text-align: center;
    }

    .hero-text-overlay {
        padding: 25px 15px;
        background: linear-gradient(to bottom, rgba(255,255,255,0.95), rgba(255,255,255,0.85)) !important;
    }

    #heroContainer .slideText h1 {
        font-size: 22px;
    }

    #heroContainer .slideText h2 {
        font-size: 18px;
    }

    #heroContainer .slideText p {
        font-size: 16px;
    }
}