.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;
}


.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 */
}



