/* General Section Styles */
.section {
    display: flex;
    flex-wrap:wrap;
    align-items: center;
    justify-content: space-around; /* Changed to space-around for more even distribution */
    margin: 20px 0;
    padding: 20px;
}

.section.alt {
    flex-direction: row-reverse;
}

.text-container {
    flex: 1;
    max-width: 50%;
    text-align: justify;
    padding: 0 10px;
}

