.section-title-about {
    color: rgb(7, 28, 74);
    font-weight: 600;
    display: inline-block;
    border-bottom: 2px solid #916627;
    padding-bottom: 10px;
    margin-bottom: 1.5rem;

}

.section-text-about {
    text-align: center;
    line-height: 3;
    color: #152349;
    font-size: 1.4rem;
    font-weight: 600;
}


@media (max-width: 576px) {
    .section-title-about,
    .section-text-about {
        right: 0; /* remove the left drift */
    }

    .section-title-about {
        display: block;
        width: fit-content;
        margin-inline-end: auto; /* push to right in RTL/LTR-safe way */
    }

    .section-text-about {
        text-align: start !important; /* ensure right alignment on phones */
        text-align: justify !important;
        text-justify: inter-word;
    }
}