/* Contenedor principal */
.text-with-image{
    display: flex;
    align-items: flex-start;
    gap: 20px;              /* Espacio entre texto e imagen */
    margin-bottom: 20px;
}

/* Texto */
.text-with-image p{
    font-family: inherit;
    text-align:justify;
    margin-top: 75px;
}

/* Imagen */
.text-with-image img{
    width: 350px;           /* Cambia el tamaño según necesites */
    height: auto;
    margin-top: -20px;
}

@media (max-width:768px){

    .text-with-image{
        flex-direction: column;
        align-items: center;
    }

    .text-with-image p{
        font-size:16px;
    }

    .text-with-image img{
        width:100%;
        max-width:350px;
    }

}
