.about-section {
    flex: 1;
    padding: 2rem 1rem 20px;
    display: flex;
    justify-content: center;
}

.about-me {
    max-width: 760px;
    width: 100%;
    padding: 0 1rem;
    font-size: 1.1rem;
    line-height: 1.4;
    flex-grow: 1;
}

.technologies ul {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
    margin: 0;
    justify-content: center;
    box-sizing: border-box;
}

.technologies li {
    box-sizing: border-box;
    flex: 0 0 33.333%;         /* three columns */
    max-width: 33.333%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0.5rem;
}

.technologies p {
    text-align: center;
    font-size: 0.8rem
}

/* Ensure images and labels stay centered */
.technologies li img { display:block; margin: 0 auto; }

@media (max-width: 760px) {
    .about-me {
        padding: 0 2rem;
    }
    .about-section { padding: 0rem 2rem 1rem; }

    .technologies li { 
        flex: 0 0 50%; max-width: 50%; 
    }

    .left_support_area p {
        margin-bottom: 1em;
    }

    .left_support_area {
        margin-top: 1em;
    }
}