.about-body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.about-footer {
    margin-top: auto;
}

.about-title {
    font-size: 15pt;
    font-weight: bold;
    color: black;
    font-family: "ZCOOL XiaoWei", sans-serif !important;
}

.about-bold {
    font-weight: bold;
}

@media screen and (max-width: 575px) {
    .about-content {
        display: flex;
        flex-direction:column;
        gap: 10px;
        align-items: center;
    }

    .about-image{
        max-width: 570px;
        width: 100%;
        height: 250px;
        object-fit: cover;
        image-rendering: high-quality;
    }
}

@media screen and (min-width: 576px) {
    .about-content {
        display: flex;
        flex-direction:column;
        gap: 10px;
        align-items: center;
    }
}

@media screen and (min-width: 640px) {
    .about-content {
        display: flex;
        flex-direction:column;
        gap: 10px;
        align-items:center;
    }
}


@media screen and (min-width: 992px) {
    .about-content {
        display: flex;
        flex-direction:row;
        gap: 10px;
        align-items: flex-start;
    }
}

