.aboutus-row {
    width: 100%;
    max-width: 640px;
    margin: 32px auto 0 auto;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 16px;
    padding: 4px 2px;
    box-sizing: border-box;
}
.aboutus-row > img {
    width: 24px;
    height: 24px;
    flex: none;
    object-fit: contain;
    align-self: center; 
    margin: 0;
}
.aboutus-row-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
    flex: 1 1 auto;
    min-width: 0;
}
.aboutus-row-text > label {
    font-family: 'Segoe UI';
    font-style: normal;
    font-weight: 700;
    font-size: 16px;
    line-height: 21px;
    color: #333333;
    display: flex;
    align-items: center;
    margin: 0;
    padding: 0;
}
.aboutus-row-text > p,
.aboutus-row-text > p + p,
.aboutus-row-text a,
.aboutus-row-text a + p {
    font-family: 'Segoe UI';
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 21px;
    color: #333333;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
}
.aboutus-row-text a { color: #004F98; text-decoration: none; }
.aboutus-row-text a:hover { text-decoration: underline; }

@media (max-width: 600px) {
    .aboutus-row { gap: 14px; max-width: 560px; margin-top: 28px; }
    .aboutus-row > img { width: 22px; height: 22px; }
    .aboutus-row-text > label { font-size: 15px; }
    .aboutus-row-text > p, .aboutus-row-text a, .aboutus-row-text > p + p { font-size: 15px; }
}
@media (max-width: 420px) {
    .aboutus-row { gap: 12px; max-width: 100%; margin-top: 24px; }
    .aboutus-row > img { width: 20px; height: 20px; }
    .aboutus-row-text > label { font-size: 14px; }
    .aboutus-row-text > p, .aboutus-row-text a, .aboutus-row-text > p + p { font-size: 14px; }
}

.aboutus-right-panel {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-top: 40px;
    padding-bottom: 40px;
    box-sizing: border-box;
}

#aboutus-container-left {
    position: static;
    width: 100%;
    max-width: 760px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0 24px 40px;
}

@media (max-height: 750px) {
    .aboutus-right-panel { justify-content: flex-start; }
}

