.aboutus {
    display: flex;
    justify-content: center;
    padding: 24px 0;
}

.aboutus .container {
    flex-direction: column;
    gap: 16px;
}

.aboutus .container .about-left {
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: none;
    width: 100%;
    gap: 25px;
}

.aboutus .container .about-right {
    width: 100%;
    border-radius: 32px;
    overflow: hidden;
}

.aboutus .container .about-right img {
    width: 100%;
    height: auto;
    max-width: none;
    object-fit: cover;
}

@media screen and (min-width: 945px) {
    .aboutus .container {
        flex-direction: row;
        gap: 16px;
    }

    .aboutus .container .about-left {
        display: flex;
        flex-direction: column;
        justify-content: center;
        max-width: 492px;
        gap: 25px;
    }

    .aboutus .container .about-right {
        width: auto;
        border-radius: 32px;
        overflow: hidden;
    }

    .aboutus .container .about-right img {
        width: 100%;
        height: 373px;
        max-width: 600px;
        object-fit: cover;
    }
}