
body{
    /* padding-left: 250px; */
    /* font-family: 'Atkinson Hyperlegible', sans-serif !important; */
    font-family: var(--main-font) !important;
}

#help-section-container{
    /* max-width: 1080px; */
    height: 100vh;
    overflow-y: scroll;
}

#help-section-wrapper{
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 20px;
    
}

.iframe-video-container {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    /* max-width: 500px; */
}

.iframe-video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

h1{
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 20px;
}

h2{
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.section-help{
    margin-top: 30px;
}

@media screen and (min-width: 768px){
    #help-section-wrapper{
        padding: 40px;
    }
    .iframe-video-container{
        max-width: 600px;
        height: 337.5px;
        padding-bottom: 0;
    }
}