.custom-two-col-row {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 30px;
    min-height: 100%;
}
.custom-two-col {
    flex: 1 1 0;
    padding: 30px 25px;
    min-width: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}
.custom-two-col.left {
    background: #f5f5f5;
    color: #000; /* Changed to black */
    border-top-left-radius: 8px;
    border-bottom-left-radius: 8px;
}
.custom-two-col.right {
    background: #075956;
    color: #fff; /* White */
    border-top-right-radius: 8px;
    border-bottom-right-radius: 8px;
}
@media (max-width: 991px) {
    .custom-two-col-row {
        flex-direction: column;
    }
    .custom-two-col.left,
    .custom-two-col.right {
        border-radius: 8px !important;
    }
}
.custom-two-col.left .single-well h4,
.custom-two-col.left .single-well h4 a,
.custom-two-col.left .single-well h3,
.custom-two-col.left .single-well h3 a,
.custom-two-col.left .marker-list li {
    color: #000 !important;
}
.custom-two-col.right .single-well h4,
.custom-two-col.right .single-well h4 a,
.custom-two-col.right .single-well h3,
.custom-two-col.right .single-well h3 a,
.custom-two-col.right .marker-list li {
    color: #fff !important;
}


