I'm aiming to achieve a similar layout like this (using tailwind) : https://i.stack.imgur.com/G0oti.png
Here's the current setup:
<section class="bg-juli-white pt-24">
<div class="max-w-6xl mx-auto flex flex-col">
<h1 class="self-end text-juli-red text-4xl font-bold">meet the team.</h1>
<img
src="https://images.pexels.com/photos/15860716/pexels-photo-15860716.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=1"
alt=""
class="w-52 self-end"
/>
</div>
</section>
<section class="bg-juli-peach py-10 px-10 w-full h-40">
<h3 class="text-white font-bold">
Incididunt laboris labore consequat nisi.
</h3>
</section>
How can I adjust this layout, considering that I heavily rely on flexbox for this website?