body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #e0f0ff; /* Light blue background */
}

.container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 50px;
}

.text-section {
    max-width: 500px;
}

.text-section h1 {
    font-size: 36px;
    color: #2b3b4f;
    margin-bottom: 20px;
}

.text-section p {
    font-size: 18px;
    color: #606c7b;
    line-height: 1.5;
    margin-bottom: 30px;
}

.text-section a {
    font-size: 16px;
    text-decoration: none;
    color: #3478f6;
}

.video-section iframe {
    max-width: 600px;
    width: 100%;
    height: 350px;
    border: none;
    border-radius: 10px;
}

@media screen and (max-width: 768px) {
    .container {
        flex-direction: column;
        text-align: center;
    }

    .video-section iframe {
        max-width: 100%;
        height: auto;
    }

    .text-section {
        margin-bottom: 20px;
    }
}