.flex-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px; /* Add gap between items */
}

.left-box {
    width: 50%; /* Half the width of the main content area */
    display: flex;
    flex-direction: column;
}

.video-container {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
}

.video-container video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%; /* Ensure video fills the container */
    border: 0;
}

.image-container {
    margin-top: 20px; /* Space between video and image */
}

.image-container img {
    width: 100%; /* Ensure the image fills the container */
    height: auto; /* Maintain aspect ratio */
}

.right-box {
    width: 50%; /* Half the width of the main content area */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.text-box {
    padding: 20px;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 5px;
    text-align: left;
    margin-bottom: 20px; /* Add space between text boxes */
}



.full-width-box {
    width: 100%;
    margin-top: 20px;
    padding: 20px;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 5px;
    text-align: left;
}
