/* =================== */
/* GLOBAL & LAYOUT     */
/* =================== */
body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    margin: 0;
    line-height: 1.6;
    color: #333;
    background-color: #f4f7fc;
}

.split-layout {
    display: flex;
    min-height: 100vh;
}

/* =================================== */
/* LEFT SIDE: THE SERVICES COLUMN      */
/* =================================== */
.action-column {
    flex-basis: 55%;
    background-color: #ffffff;
    padding: 40px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.logo {
    font-size: 1.5em;
    font-weight: bold;
    color: #0056b3;
    text-decoration: none;
    margin-bottom: 40px;
    display: inline-block;
}

.action-column h1 {
    font-size: 3em;
    color: #1d3557;
    margin-bottom: 20px;
    line-height: 1.2;
}

.action-column p {
    font-size: 1.1em;
    max-width: 550px;
    margin-bottom: 30px;
}

.services-offered {
    margin-bottom: 40px;
    font-size: 1.0em;
}
.services-offered .service {
    background-color: #f4f7fc;
    padding: 10px 15px;
    border-radius: 5px;
    margin-bottom: 10px;
    border-left: 3px solid #457b9d;
}

.cta-button {
    background-color: #0056b3; /* Changed to a more corporate blue */
    color: white;
    padding: 18px 40px;
    text-decoration: none;
    font-size: 1.2em;
    border-radius: 5px;
    font-weight: bold;
    display: inline-block;
    transition: background-color 0.3s ease;
}
.cta-button:hover { background-color: #00418a; }

.cta-phone {
    display: block;
    margin-top: 15px;
    color: #457b9d;
    font-weight: 500;
    text-decoration: none;
}


/* =================================== */
/* RIGHT SIDE: THE CREDIBILITY COLUMN  */
/* =================================== */
.trust-column {
    flex-basis: 45%;
    background-color: #f4f7fc;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.trust-stack {
    max-width: 400px;
    margin: 0 auto;
}

.trust-headshot {
    height: 150px;
    width: 150px;
    border-radius: 50%;
    background-color: #ccc; /* Placeholder color */
    background-image: url('IMG_1228.jpg'); 
    background-size: cover;
    background-position: center;
    margin: 0 auto 20px auto;
    border: 5px solid #ffffff;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.trust-credentials {
    background-color: #ffffff;
    padding: 20px 25px;
    border-radius: 8px;
    margin-bottom: 25px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.trust-credentials h3 {
    margin-top: 0;
    text-align: center;
    color: #1d3557;
}

.trust-credentials ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.trust-credentials li {
    margin-bottom: 10px;
    color: #333;
}

.trust-testimonial {
    background-color: transparent;
    padding-left: 20px;
}

.trust-testimonial p {
    font-style: italic;
    margin: 0 0 10px 0;
    position: relative;
}

.trust-testimonial p::before {
    content: '“';
    font-size: 3em;
    color: #a8dadc;
    font-weight: bold;
    line-height: 0;
    position: absolute;
    top: 10px;
    left: -25px;
}

.trust-testimonial span {
    font-weight: bold;
    color: #1d3557;
}
/* =================== */
/* =================================== */
/* MOBILE RESPONSIVE STYLES            */
/* =================================== */

/* This code applies only to screens 900px wide or smaller */
@media (max-width: 900px) {
    .split-layout {
        flex-direction: column; /* Stack the columns vertically */
        min-height: auto; /* Let content define the height */
    }

    .action-column {
        padding: 40px 30px; /* Reduce padding for smaller screens */
    }

    .action-column h1 {
        font-size: 2.2em; /* Make headline smaller */
    }

    .trust-column {
        padding: 50px 30px; /* Add more top padding for separation */
    }

    .trust-stack {
        max-width: 100%; /* Allow trust stack to fill the width */
    }
}
