#goals {
    margin-top: 50px;
}

.container {
    display: flex;
    flex-direction: row;
    height: 100%;
}

.left-side {
    flex: 1;
    padding: 20px;
}

.left-side h2 {
    margin-left: 20px;
    font-size: 36px;
}

.left-side p {
    line-height: 1.625;
    letter-spacing: 0.025em;
}

.left-side p::first-letter{
    margin-left: 8px;
}

.right-side {
    flex: 0 0 40%;
    height: 400px;
    overflow: hidden;
}

.right-side img {
    display: inline-block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

@media (max-width: 768px) {
    .container {
        flex-direction: column-reverse;
    }

    .right-side {
        flex: 1;
        height: auto;
        max-height: 400px;
    }
}