#about_band_section{
    padding: 10px 0 0 0;
    margin: 0 auto;
    max-width: 90%;
}
.about_band_container{
    display: flex;
    justify-content: center;
    align-items: center;
}
.about_band_text{
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 50px;
    min-width: 50%;
    max-width: 90%;
    color: var(--secondary-text-color);
    margin: 0 auto;
}
.about_band_text p{
    text-align: justify;
    line-height: 140%;
}
.about_band_text img{
    width: 400px;
    max-width: 90%;
}

@media print{
    .about_band_text{
        display: flex;
        flex-wrap: nowrap;
        align-items: center;
        justify-content: center;
        max-width: 100%;
        gap: 30px;
    }
    .about_band_text p {
        margin: 0; 
        max-width: 50%; 
        text-align: justify;
        line-height: 140%;
    }
    .about_band_text img{
        max-width: 40%;
    }
}


@media(max-width: 1000px){
    #about_band_section{
        gap: 10px;
        max-width: 90%;
    }
    .about_band_text{
        display: flex;
        justify-content: center;
        align-items: center;
        flex-wrap: wrap-reverse;
        max-width: 90%;
        margin: 0 auto;
    }
}
@media(max-width: 800px){
    .about_band_text img{
        width: 300px;
    }
}