.aboutUs-container {
    border-radius: 25px;
    overflow: hidden;
    width: 83%;
    max-width: 1250px;
    background-color: #fff;
    margin: 3rem auto;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.aboutUs-header {
    font-family: "Manrope", sans-serif;
    background-color: #fff;
    color: #7b3fe4;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 10px;
    padding: 4.5rem 70px 0px;
}

.aboutUs-content {
    display: flex;
    padding: 0 60px;
    font-size: 18px;
    margin-bottom: 2rem;
    hyphens: auto;
    font-weight: 400;
    flex-wrap: nowrap;
}

.left-column,
.right-column {
    width: 50%;
    padding: 10px;
}

.paragraph-right,
.paragraph-left {
    line-height: 20px;
    font-size: 0.8rem;
    font-family: 'outfit', sans-serif;
}


#svg-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: auto;
    margin-top: 20px;
}

@media (max-width: 768px) {
    .aboutUs-header {
        font-size: 2rem;
        padding: 2rem 20px;
    }

    .aboutUs-content {
        padding: 0 10px;
        flex-wrap: wrap;
    }

    .left-column,
    .right-column {
        width: 100%;
    }

    .left-column {
        order: 1;
    }

    .right-column {
        order: 2;
    }
}

@media (max-width: 480px) {
    .aboutUs-header {
        font-size: 35px;
    }

    .aboutUs-content {
        font-size: 0.9rem;
    }

    .left-column,
    .right-column {
        padding: 5px;
    }
}