.careers-container {
    max-width: 900px;
    margin: 100px auto;
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
.careers-container h2 {
    text-align: center;
    color: rgb(117, 56, 122);
}
.careers-box {
    background-color: #e0e0e0;
    padding: 20px;
    margin-top: 20px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.careers-text {
    flex: 1;
    font-size: 16px;
    color: #333;
    font-weight: bold;
}
.careers-image {
    max-width: 300px;
    height: auto;
    margin-left: 20px;
    border-radius: 5px;
}

@media (max-width: 450px) {
    .careers-container {
        display: flex;
        flex-flow: row wrap;
        width: 100%;
        padding: 0;
    }

    .careers-box {
        display: flex;
        flex-flow: column nowrap;
    }
    .careers-text {
        order: 5;
    }
    .careers-box img {
        order: 1;
        margin: 0 0 15px 0;
    }
}
