body {
    font-family: 'Poppins', sans-serif;
    background-color: #ffffff;
    margin: 0;
    padding: 0;
    text-align: center;
}
.container {
    max-width: 900px;
    background: white;
    padding: 30px;
    border-radius: 10px;

    margin: 0 auto;
}

.image-container {
    text-align: center;
    margin-bottom: 20px;
}
.image-container img {
    width: 100%;
    max-width: 450px;
    height: auto;
    border: 3px solid #ddd;
    border-radius: 8px;
}
.content {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    justify-content: center;
    text-align: left;
}
.left-section {
    flex: 1;
}
.right-section {
    flex: 1.2;
}
.list {
    list-style-type: disc;
    padding-left: 20px;
    font-size: 18px;
    line-height: 1.6;
    color: black;
    display: inline-block;
    text-align: left;
}

/* Mobile Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 15px;
    }
    .content {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .left-section, .right-section {
        text-align: center;
        margin: 0;
    }
    .list {
        text-align: left;
        display: block;
        width: 100%;
    }
}

















.video-banner {
    margin-right: 15px; /* Adjust the space as needed */
}



<style>/* Default: Navbar is static */
    #mainav {
        position: relative;
        width: 100%;
        background: white; /* Ensure visibility */
        z-index: 1000;
    }
    
    /* Desktop View: Sticky Navbar */
    @media screen and (min-width: 1024px) { 
        .wrapper.row1 {
            position: sticky;
            top: 0;
            z-index: 1000;
            background: white; /* Ensure it doesn’t blend with content */
            box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1); /* Optional: Adds subtle shadow */
        }
    }
    </style>