.about-us {
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding: 30px;
    background-color: #f7f7f7;
    border-radius: 6px 6px 0 0; 
    color: black !important;
    font-size: 14px !important;

    .title {
        font-size: 24px;
        font-weight: bold;
    }

    .content {
        font-size: 14px;
        line-height: 22px;
    }
}

@media screen and (max-width: 992px) {
    .about-us {
        max-width: 100% !important;
        display: none;
    }
}