.section {
    display: flex;
    min-height: 100vh;
    width: 100%;
    flex-direction: row;
    background-color: #ffffff;
    color: #0f3d3d;
}

.left-column,
.right-column {
    flex: 1;
}

.left-column {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    text-align: center;
}

.left-column h1 {
    font-size: 2rem;
    margin-bottom: 3rem;
}

.left-column p {
    font-size: 1.1rem;
    max-width: 500px;
    text-align: center;
}

.left-column img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 50%;
}

.right-column {
    position: relative;
}

.right-column img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 768px) {
    .section {
        flex-direction: column;
    }

    .section h1 {
        font-size: 1.2rem;

    }

    .left-column h1 {
        margin-bottom: 2rem;
    }

    .section p {
        font-size: 1rem;
        padding-inline: 35px;

    }

    .right-column img {
        position: relative;
        height: 50vh;
    }

    .left-column {
        padding-inline: 1rem;
    }

    .left-column img {
        display: none;
    }

}