.why-switch-bc-section {
    display: flex;
    flex-wrap: wrap; /* Allows the layout to be responsive */
    justify-content: space-between; /* Creates space between the two columns */
    background-color:white;
    padding-top:80px;
    padding: 30px 10vw;
}
.why-switch-bc-video {
    width: calc(50% - 10px); /* Adjust the width to account for padding */
    padding-right: 20px; /* Adds spacing to the right */
}

.why-switch-bc-content {
    width: calc(50% - 10px); /* Adjust the width to account for margin */
    /* Or you could add margin-left: 20px; if you prefer margin over padding */
    line-height:30px;
}

@media (max-width: 768px) {
    .why-switch-bc-section {
        padding: 5vh 10vw;
    }

    .why-switch-bc-video, .why-switch-bc-content {
        flex-basis: 100%; /* Columns stack vertically on smaller screens */
    }
    .why-switch-bc-content {
        order:1;
    }
    .why-switch-bc-video {
        order:2;
    }
}

.first-word {
    color: #111126; /* Example color: red. Adjust to the color you want. */
}