.section {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    padding: 20px;
    gap: 30px;
    height: 650px;
}

.section:nth-child(even) {
    flex-direction: row-reverse;
    background-color: #f9f9f9;
}

.section img {
    max-width: 100%;
    height: 400px;
    width: 400px;
    border-radius: 10px;
    flex: 1 1 300px;
    object-fit: cover;
}

.section-content {
    flex: 1 1 400px;
}

.section h2 {
    font-size: 28px;
    margin-bottom: 15px;
    color: #111;
}

@media (max-width: 768px) {
    .section {
        flex-direction: column;
        text-align: center;
        height: auto;
    }
    .section img { height: auto; width: 100%; }
    .section-content { width: 100%; }
}

.content-obj {
    max-width: 1000px;
    margin: 0 auto;
    font-size: 16px;
    line-height: 1.9em;
    color: #464646;
}

.objective-list-obj {
    margin-top: 20px;
    padding-left: 20px;
}

.objective-list-obj li {
    margin-bottom: 15px;
    list-style-type: disc;
}
