When I tried to align the div on the right with a max-width of 1200px on a page with an available width of 1600px, it did not work as expected.
.csystem {
display: flex;
max-width: 1200px;
flex-direction: column;
justify-content: flex-end
}
<div class="csystem">
<h1>Yes</h1>
<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit...</p>
</div>