/* ==========================================
   ChenBridge Services Pages
   Shared styles for service detail pages
   ========================================== */


/* Service scope cards */

.scope-card {
    text-align: left;
    border-top: 3px solid #F28C28;
}

.scope-card h3 {
    font-size: 19px;
}


/* Alternating feature rows */

.feature-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.feature-row img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 20px 45px rgba(15, 61, 46, 0.15);
}

.feature-row h2 {
    text-align: left;
    margin-bottom: 20px;
}

.feature-row p {
    color: #4b5563;
    margin-bottom: 14px;
}

.feature-list {
    list-style: none;
    margin-top: 10px;
}

.feature-list li {
    padding: 8px 0 8px 28px;
    position: relative;
    color: #374151;
    border-bottom: 1px solid #eceae4;
}

.feature-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #F28C28;
    font-weight: 700;
}


/* Outcome strip — light panel, dark text (kept in sync with style.css) */

.outcome-strip {
    text-align: center;
    margin: 0 auto;
}

.outcome-strip h3 {
    color: #0F3D2E;
    font-size: 24px;
    margin-bottom: 12px;
}

.outcome-strip p {
    color: #374151;
    max-width: 760px;
    margin: 0 auto;
}


@media (max-width: 900px) {

    .feature-row {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .feature-row h2 {
        text-align: center;
    }
}
